I am in the online class for [Getting Started with AI on Jetson Nano]. I used the JetPack 4.4 includes L4T 32.4.3 download from the jetPack archive. To connect to docker, I need the container version tag . In (DLI Getting Started with AI on Jetson Nano | NVIDIA NGC). I tried v2.0.0-r32.4.3, v2.0.1-r32.4.4, and v2.0.1-r32.4.4zh. In Powershell trying to hook up to Docker, for all three of these cases, I get the error “-bash: ./docker_dli_run.sh: Permission denied” after running ./docker_dli_run.sh . Which container version tag do I use for my Jetson Nano P3450 [180-13449-DAAF-B01]. ? Thanks.
Hi @thad1, you want to select a container tag that ends in your L4T version (in your case, it would seem that is r32.4.3)
Are you able to run sudo docker pull nvcr.io/nvidia/dli/dli-nano-ai:v2.0.0-r32.4.3
?
It might just be that your shell script needs executable permissions set…try running chmod +x docker_dli_run.sh
(or using bash to run it like bash docker_dli_run.sh
)
Thanks for your helpful suggestions. I did try ‘sudo docker pull nvcr.io/nvidia/dli/dli-nano-ai:v2.0.0-r32.4.3’
but it stopped pulling about three lines from the end. I waited 15 minutes so I terminated it and then I tried:
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.2-r32.7.1
and strange as it may seem, it ended up working.
Now, I'm not sure what L4T version I have.
Is there a command that can identify the version?
Thanks.
Sorry for the delay @thad1, you can check your L4T version with cat /etc/nv_tegra_release
This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.