You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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:
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: