Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Build instructions incorrect #223

Open
smbunn opened this issue Nov 8, 2024 · 0 comments
Open

Build instructions incorrect #223

smbunn opened this issue Nov 8, 2024 · 0 comments

Comments

@smbunn
Copy link

smbunn commented Nov 8, 2024

Hi Dusty, you are missing a line in the build instructions:

git clone https://github.com/dusty-nv/jetson-utils
mkdir build
cd build
cmake ../
make -j$(nproc)
sudo make install
sudo ldconfig

should be

git clone https://github.com/dusty-nv/jetson-utils
cd jetson-utils
mkdir build
cd build
cmake ../
make -j$(nproc)
sudo make install
sudo ldconfig

It also fails with missing dependencies. So you need:

sudo apt-get install libsoup2.4-dev

and then it fails on gstwebRTC and I have found no way around that so far.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant