Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Minicinda is a barebones Anaconda installation, which only installs the conda (package management) functionality. This is prefereable to the full Anaconda, which installs many data science packages, and is very bulky. To install miniconda, refer to the official guide: https://docs.conda.io/projects/conda/en/latest/user-guide/install/linux.html . Note that the exact name of the executable will vary by the version of Miniconda used.

Code Block
languagebash
mkdir ~/software
# Copy the Miniconda installer to software
cd ~/software
bash Miniconda3-py39_4.12.0-Linux-x86_64.sh

When prompted to accept the agreement, type “yes” and press Enter

...