CLSP Cluster Notes | Day 2

Installing miniconda3

Used wget instead of curl - the latter initially gave me the impression that the program went into some infinite loop with the following message:

Please answer ‘yes’ or ‘no’:

The previous ran fine, although I thought it froze when I executed the shell script. Turned out I just needed to be patient and wait…

Activating conda environment

From the install message:

To activate conda’s base environment in your current shell session:

eval "$(/PATH_TO_CONDA/miniconda3/bin/conda shell.YOUR_SHELL_NAME hook)" 

To install conda’s shell functions for easier access, first activate, then:

conda init

If you’d prefer that conda’s base environment not be activated on startup, set the auto_activate_base parameter to false:

conda config --set auto_activate_base false