jetson-voice
jetson-voice copied to clipboard
How to run run and install the container on r32.7.2?
Hi,
I tried to install Nemo toolkit by following these commands on my Jetson nano L4T r32.7.2 but it's throwing an error. Can you please help me with installing Nemo in my Jetson nano?
$ git clone --branch dev https://github.com/dusty-nv/jetson-voice $ cd jetson-voice $ docker/run.sh
Any update on this?
Error lines:
ARCH: aarch64
reading L4T version from /etc/nv_tegra_release
L4T BSP Version: L4T R32.7.2
CONTAINER: dustynv/jetson-voice:r32.7.2
DEV_VOLUME:
DATA_VOLUME: --volume /jetson-voice/data:/jetson-voice/data
USER_VOLUME:
USER_COMMAND:
Unable to find image 'dustynv/jetson-voice:r32.7.2' locally
docker: Error response from daemon: manifest for dustynv/jetson-voice:r32.7.2 not found: manifest unknown: manifest unknown.
It is possible force dustynv/jetson-voice:r32.7.1 ?
Nemo has a lot dependencies which is based on python >=3.7, but torch with lighting (+CUDA) for jetson nano arch64 works with 3.6 version. I recommend you to upgrade jetpack for host before docker container downloaded. When you upgrade jetpack edit docker/tag.sh file like this (if your current jetpack is 32.7.3):
if [ $ARCH = "aarch64" ]; then
TAG="r$L4T_VERSION"
if [ $L4T_VERSION = "32.5.1" ]; then
TAG="r32.5.0"
elif [ $L4T_VERSION = "32.7.3" ]; then
TAG="r32.7.1"
fi