Versions Compared

Key

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

...

When you install Conda, it is best practice to install in your software partition, i.e. $MYSOFTWARE or `/software/projects/$PAWSEY_PROJECT/$USER/miniconda3`

Column
width900px



Configuration

When Conda installs packages, it writes a lot of small files, which can quickly fill up your quota on /software. To avoid this issue, you can configure Conda via the .condarc file to put all those package files into the /scratch partition instead. There are two ways to update your .condarc file. The first way allows you to update your .condarc file from the command line. Ensure you edit the command below to match your project ID and user name:

Code Block
languagebash
themeEmacs
titleTerminal 1. Installing miniconda
$ mkdir -p $MYSOFTWARE/miniconda3
$ wget https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh -O $MYSOFTWARE/miniconda3/miniconda.sh
$ bash $MYSOFTWARE/miniconda3/miniconda.sh -b -u -p $MYSOFTWARE/miniconda3
$ rm -rf $MYSOFTWARE/miniconda3/miniconda.sh


Column
width

Configuration

When Conda installs packages, it writes a lot of small files, which can quickly fill up your quota on /software. To avoid this issue, you can configure Conda via the .condarc file to put all those package files into the /scratch partition instead. There are two ways to update your .condarc file. The first way allows you to update your .condarc file from the command line. Ensure you edit the command below to match your project ID and user name:

Column
width900px900px

Note - If you get a Disk Quota exceeded error, your home dir might be filled up so try cleaning by removing the dir and then creating it in the software and generating a symbolic link.

Code Block
languagebash
themeEmacs
titleTerminal 2. Conda configuration editing on command line
$ conda config --add pkgs_dirs /scratch/pawsey0000/user_name/conda_cache


...