Reputation: 1
I am trying to download Open5gs on my 20.04 Ubuntu Machine but keep getting this error: 'Dependency "talloc" not found', when I run the script "meson build --prefix='/pwd'/install
I tried fixing the issue using sudo apt-get install python3-talloc-dev but the error is still thrown.
Upvotes: 0
Views: 1480
Reputation: 2743
You probably want to install libtalloc-dev
, which provides the pkgconfig file for talloc
Upvotes: 0