Versions Compared

Key

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

...

Warning
titleONLY if you see something different should you use the commands in this section


Code Block
languagebash
titleUsing the mkdir command to create a folder named 'src' inside of your $WORK directory
collapsetrue
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:

  1. hit enter to page through the license agreement
  2. enter 'yes' to agree to said license agreement
  3. enter to confirm the default installation location
  4. enter 'yes'  to initialize Miniconda3 by running conda init?


Code Block
languagebash
titleas 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
languagebash
titlelog back in a final time
conda activate base

if the above worked correctly, your prompt should go from 

No Format
tacc:~$

to 

No Format
(base) tacc:~$

If you see anything else, get my attention.

...