Jetson AI Fundamentals YouTube Video S1E2 - Container Issue Solved

Following the YouTube video, I kept receiving errors when trying to run the script example:

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

I found this page and ran the example script:

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

I was successfully able to open Jupyter and continue to following along with the YouTube tutorial.

Hi @ma33hew.david, glad to hear that you were able to run the DLI container - what was the error you were getting when you tried to run the script?

I noticed in the code block that you posted, there is a trailing space after the \ on the --device /dev/video0 \ line. Try removing that so there is no whitespace after the \

1 Like