From 6e76d6acdb4d83cbf694888ff3a85ebbafe3a6e1 Mon Sep 17 00:00:00 2001 From: caubet_m Date: Tue, 7 Nov 2023 09:40:52 +0100 Subject: [PATCH] Improve condarc example --- pages/merlin6/05-Software-Support/python.md | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/pages/merlin6/05-Software-Support/python.md b/pages/merlin6/05-Software-Support/python.md index 8c28d17..95e0b3a 100644 --- a/pages/merlin6/05-Software-Support/python.md +++ b/pages/merlin6/05-Software-Support/python.md @@ -78,18 +78,17 @@ merlin. Environments can grow quite large, so you will need to change the defaul storage location from the default (your home directory) to a larger volume (usually `/data/user/$USER`). -Save the following as `$HOME/.condarc` (update USERNAME and module version as -necessary): +Save the following as `$HOME/.condarc`: ``` always_copy: true envs_dirs: - - /data/user/USERNAME/conda/envs + - /data/user/$USER/conda/envs pkgs_dirs: - - /data/user/USERNAME/conda/pkgs - - /opt/psi/Programming/anaconda/2019.07/conda/pkgs + - /data/user/$USER/conda/pkgs + - $ANACONDA_PREFIX/conda/pkgs channels: - conda-forge