본문 바로가기
Robotics 🤖/Nvidia Jetson

ARM64 anaconda install (NVIDIA JETSON Board)

by 우직한 사람 2024. 3. 22.
반응형

https://docs.anaconda.com/free/anaconda/install/linux/

 

Installing on Linux — Anaconda documentation

You can verify your installer’s data integrity with the SHA-256 hash that matches your chosen installer. See the hash index for a list of installers and their hashes. For more information on hash verification, see cryptographic hash verification in the o

docs.anaconda.com

 

1. package installation

sudo apt-get install libgl1-mesa-glx libegl1-mesa libxrandr2 libxrandr2 libxss1 libxcursor1 libxcomposite1 libasound2 libxi6 libxtst6

2. Anaconda installation

sudo apt-get install curl
curl -O https://repo.anaconda.com/archive/Anaconda3-2024.02-1-Linux-aarch64.sh

 

INSTALLER_VERSION 

https://repo.anaconda.com/archive/

 

bash ~/Anaconda3-2024.02-1-Linux-aarch64.sh

 

3. Finish

 

4. How to make conda Env

conda create -n test python=3.8

done

반응형