Versions Compared

Key

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

...

Panel
panelIconIdatlassian-warning
panelIcon:warning:
bgColor#FFEBE6

Note that HOME is not a good choice for storing Python packages since 1) it is not designed for parallel use, 2) will very likely lead to quota issues (HOME is limited to 5GB20GB), and 3) causes unnecessary backups of reproducible data.

...

Code Block
conda config --add envs_dirs /scratch/<group>/<username>/.conda/envs
conda config --add pkgs_dirs /scratch/<group>/<username>/.conda/pkgs

Additionally, you may create a link for $HOME/.cache pointing to /scratch/<group>/<username>/.cache

Code Block
cd /scratch/<group>/<username>/
mkdir .cache
cd
mv .cache .cache-old      #Just as a precaution. May be removed
ln -s /scratch/<group>/<username>/.cache

However, be aware that the directory $HOME/.cache is used by many applications. Since /scratch ist cluster local, this may be sometimes confusing.