Code Block |
---|
language | bash |
---|
title | Using the mkdir command to create a folder named 'src' inside of your $WORK directory |
---|
collapse | true |
---|
| cd $WORK
mkdir src
cd src
wget https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh
bash Miniconda3-latest-Linux-x86_64.sh |
Following the installation prompts you will need to: - hit enter to page through the license agreement
- enter 'yes' to agree to said license agreement
- enter to confirm the default installation location
enter 'yes' to initialize Miniconda3 by running conda init?
Code Block |
---|
language | bash |
---|
title | as As per the directions at the end of the installation process, logout, log back in, and disable conda base environment being activated. |
---|
| logout
#log back in using the ssh command.
conda config --set auto_activate_base false
conda config --set channel_priority strict
logout |
Code Block |
---|
language | bash |
---|
title | log back in a final time |
---|
| conda activate base |
if the above worked correctly, your prompt should go from to If you see anything else, get my attention. |