Getting Started with AI on Jetson Nano Course Environment Container

when i enter the following code i get the error below Course
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

error message bash: nvcr.io/nvidia/dli/dli-nano-ai:v2.0.1-r32.5.0: No such file or directory
how do i fix this

Hi,

When you run the command, docker will look at dli-nano-ai:v2.0.1-r32.5.0 on your device first.
That’s why you saw the warning message.

If docker cannot find the image locally, it will start to download it from nvcr.io like below:

Unable to find image 'nvcr.io/nvidia/dli/dli-nano-ai:v2.0.1-r32.5.0' locally
v2.0.1-r32.5.0: Pulling from nvidia/dli/dli-nano-ai
5000a6c32c5a: Pulling fs layer
8e855b69096a: Pulling fs layer
8db8dbbd4bb9: Pulling fs layer
833dc3235950: Pulling fs layer
f79d264135a3: Pulling fs layer
...

Thanks.

This topic was automatically closed 60 days after the last reply. New replies are no longer allowed.