We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
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.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi Dusty, you are missing a line in the build instructions:
should be
It also fails with missing dependencies. So you need:
and then it fails on gstwebRTC and I have found no way around that so far.
The text was updated successfully, but these errors were encountered: