I have a NVIDIA Jetson Orin Nano running ubuntu 22.04. I want to create a container that will run ubuntu 20.04 (because I want to run ros noetic) with CUDA+Tensorrt. When I run:
docker run -it --rm --runtime=nvidia --gpus all ubuntu:latest bash
everything runs great, I can test cuda with nvidia-smi. However, this runs ubuntu 22.04. When I try to run
docker run -it --rm --runtime=nvidia --gpus all ubuntu:20.04 bash
I get the following error:
NVIDIA-SMI couldnβt find libnvidia-ml.so library in your system. Please make sure that the NVIDIA Display Driver is properly installed and present in your system.
Please also try adding directory that contains libnvidia-ml.so to your system PATH.
I tried this LSB_RELEASE=20.04 CUDA_VERSION=12.6 PYTHON_VERSION=3.12 PYTORCH_VERSION=2.6
jetson-containers build vllm, (and also other versions of CUDA) but get this error: