SETUP JP4.5/L4T 32.5 with no errors

Instead of the information that is provided in the courses and other places.
If you are doing a fresh install. Use the following commands instead, after setting up system from console. (This is for USB camera mode)

From host computer, with data micro USB cable.
From Linux: open a terminal and enter the following.
From Windows: open a powershell and enter the following.
ssh USERNAME @192.168.55.1

mkdir -p ~/nvdli-data

sudo docker pull nvcr.io/nvidia/dli/dli-nano-ai:v2.0.1-r32.5.0

echo “sudo docker run --runtime nvidia -it --rm --network host
–volume ~/nvdli-data:/nvdli-nano/data
–device /dev/video0
nvcr.io/nvidia/dli/dli-nano-ai:v2.0.1-r32.5.0” > docker_dli_run.sh
chmod +x docker_dli_run.sh
./docker_dli_run.sh

Navigate with web browser to JupyterLab Server: http://192.168.55.1:8888/

1 Like

Nice! Thanks for your sharing to community!