jetson-voice icon indicating copy to clipboard operation
jetson-voice copied to clipboard

How to run run and install the container on r32.7.2?

Open Mahesh111111 opened this issue 2 years ago • 3 comments

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

Mahesh111111 avatar Jul 29 '22 14:07 Mahesh111111

Any update on this?

Deamon12 avatar Dec 07 '22 23:12 Deamon12

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 ?

adbensi avatar Dec 18 '22 16:12 adbensi

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	

kurkovpavel avatar Mar 01 '23 10:03 kurkovpavel