Installing Miniconda
Procedure
- Download the installation package.
cd /path/to/MINICONDA wget https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-aarch64.sh --no-check-certificate
- Install Miniconda.
bash Miniconda3-latest-Linux-aarch64.sh
(You only need to enter yes to confirm throughout the installation process.)
- Deactivate the base environment by default.
source ~/miniconda3/bin/activate conda config --set auto_activate_base False conda deactivate
- Install the Python virtual environment and activate it.
conda create -n py39_SimpleITK python=3.9 conda activate py39_SimpleITK
- Install NumPy.
conda install numpy
Parent topic: Configuring the Compilation Environment