1

my current situation is that I am trying to create a conda environment for some bioinformatics work in a shared server. My assigned home directory with my account only has storage for 10G and I need slightly more. I have a scratch directory with infinite storage and I am wondering if there is a way I can establish a environment and install the needed programs in that environment in the scratch folder? can I just move the /.conda/ folder from my home to this scratch?

Jeff Schaller
  • 66,199
  • 35
  • 114
  • 250

1 Answers1

0

Try moving it to the scratch directory and replace it by a symlink. Like so:

mv ~/.conda /scratch/conda
ln -s /scratch/conda ~/.conda

Keep in mind that you might lose your data in case the sysadmin wipes the scratch directory.

Martin Konrad
  • 2,090
  • 2
  • 16
  • 32