Anaconda for Jetson Nano

For those who are already familiar with installation and setup for anaconda or miniconda the steps for archiconda are similar. First download and install a version of the archiconda installer:

# 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

Next we update the conda environment and add channels containing recipes for 64 bit Arm packages.

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

A standard conda environment should now be available in $HOME/archiconda3/bin. To automatically edit your .bashrc and activate the base environment on login, use conda init bash or see $HOME/archiconda3/etc/profile.d/conda.sh

I hope it helps,

17 Likes