Issues related with docker (or jetpack) when trying NanoOWL

Hello. I am having a problem trying out the NanoOWL project in jetson ai lab on the jetson orin nx platform. I followed tutorial on NanoOWL - NVIDIA Jetson AI Lab. On jetson orin nx, I executed “sudo apt aupdate” and “sudo apt install nvidia-jetpack”, and then executed “git clone https://github.com/dusty-nv/jetson-containers” and “bash jetson-containers/install.sh”. None of the above statements reported any errors. Then, when I try to run “jetson-containers run --workdir /opt/nanoowl $(autotag nanoowl)” and start it, I run into the problem in the screenshot below:


I’m not quite sure what the problem is. does nvidia-jetpack not include docker? Is this problem related to the base environment of miniconda? Do I need to install docker myself or something else? Looking forward to a reply!

Hi,

Please set up the docker tool first.
Here are the steps for your reference:

Step 1,2 in Install Docker Engine on Ubuntu | Docker Docs

# Add Docker's official GPG key:
$ sudo apt-get update
$ sudo apt-get install ca-certificates curl
$ sudo install -m 0755 -d /etc/apt/keyrings
$ sudo curl -fsSL https://download.docker.com/linux/ubuntu/gpg -o /etc/apt/keyrings/docker.asc
$ sudo chmod a+r /etc/apt/keyrings/docker.asc

# Add the repository to Apt sources:
$ echo \
  "deb [arch=$(dpkg --print-architecture) signed-by=/etc/apt/keyrings/docker.asc] https://download.docker.com/linux/ubuntu \
  $(. /etc/os-release && echo "$VERSION_CODENAME") stable" | \
  sudo tee /etc/apt/sources.list.d/docker.list > /dev/null
$ sudo apt-get update
$ sudo apt-get install docker-ce docker-ce-cli containerd.io docker-buildx-plugin docker-compose-plugin

Thanks.

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