I followed instructions at Anaconda for Jetson Nano - #11 by mikechen6688 to set up conda on my Jetson Orin Nano 8GB Dev Kit. Specifically:
# use install path: $HOME/archiconda3
wget --quiet -O archiconda.sh https://github.com/Archiconda/build-tools/releases/download/0.2.3/Archiconda3-0.2.3-Linux-aarch64.sh && \
sh archiconda.sh -b -p $HOME/archiconda3 && \
rm archiconda.sh
export PATH=$HOME/archiconda3/bin:$PATH
conda config --add channels gaiar && \
conda config --add channels conda-forge && \
conda config --add channels c4aarch64 && \
conda update -n base --all && \
conda install -y python=3.6.7 libiconv && \
conda install -y conda-build && \
conda install -y anaconda-client
This fails with the following message:
Preparing transaction: done
Verifying transaction: done
Executing transaction: failed
ERROR conda.core.link:_execute(507): An error occurred while installing package 'conda-forge::asn1crypto-1.5.1-pyhd8ed1ab_0'.
FileNotFoundError(2, "No such file or directory: '/home/derek/archiconda3/bin/python3.6'")
Attempting to roll back.
Rolling back transaction: done
FileNotFoundError(2, "No such file or directory: '/home/derek/archiconda3/bin/python3.6'")
I see ‘/home/derek/archiconda3/bin/python3.7’ in the filesystem, but for some reason, the setup process is looking for python3.6.
Any tips on how I should go about resolving this is appreciated.