Device:nvidia agx orin 32G
SDK:Jetpack 6.0
Linux: r36.3
Question: Testing the Jetson-Inference project, I encountered the following compilation errors: – Copying examples/imagenet.py → imagenet-camera.py – Copying examples/detectnet.py → detectnet-console.py – Copying examples/detectnet.py → detectnet-camera.py – Copying examples/segnet.py → segnet-console.py – Copying examples/segnet.py → segnet-camera.py – Configuring done – Generating done – Build files have been written to: /home/nvidia/workspace/jetson-inter/jetson-inference/build Consolidate compiler generated dependencies of target jetson-utils [ 1%] Linking CXX shared library …/aarch64/lib/libjetson-utils.so /usr/bin/ld: -lnvbuf_utils: The file or directory is not found. collect2: error: ld returned 1 exit status make[2]: * * * / utils/CMakeFiles/jetson - utils. Dir/build make: 4911: aarch64/lib/libjetson-utils.so] Error 1 make[1]: *** [CMakeFiles/Makefile2:856: utils/CMakeFiles/jetson-utils.dir/all] error 2 make: *** [Makefile:136: all] error 2
I made the following attempts, but I still don’t have the libnvbuf_utils.so file.
Method 1:
sudo apt-get update
sudo apt-get install --reinstall nvidia-l4t-multimedia nvidia-l4t-multimedia-utils
method 2:
nvidia@nvidia-desktop:~/Downloads$ sudo find /usr/lib -name libnvbuf_utils.so nvidia@nvidia-desktop:~/Downloads$ dpkg-deb -c nvidia-l4t-multimedia-utils_36.3.0-20240719161631_arm64.deb | grep libnvbuf_utils nvidia@nvidia-desktop:~/Downloads$ sudo dpkg -i nvidia-l4t-multimedia-utils_36.3.0-20240719161631_arm64.deb | grep libnvbuf_utils
Could you please tell me which installation package contains the libnvbuf_utils.so file, or how to resolve this issue? I don’t want to use the NVIDIA SDK Manager for reinstallation.