Skip to content

Commit 1486a62

Browse files
Mike CroucherMike Croucher
Mike Croucher
authored and
Mike Croucher
committed
Fix ARC3 errors
1 parent 9f83b6d commit 1486a62

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

hpc/arc3_leeds.sge

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,13 @@
66
#$ -l h_rt=8:00:00
77

88
#Install miniconda if it isn't there already
9-
if [ ! -d ./miniconda/]; then
10-
wget https://repo.continuum.io/miniconda/Miniconda3-3.7.0-Linux-x86_64.sh -O ~/miniconda.sh
11-
bash ./miniconda.sh -b -p $HOME/miniconda
9+
if [ ! -d ./miniconda/ ]; then
10+
wget https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -O ./miniconda.sh
11+
bash ./miniconda.sh -b -p $PWD/miniconda
1212
fi
1313
#Add miniconda to the path
14-
export PATH="$CWD/miniconda/bin:$PATH"
14+
export PATH="$PWD/miniconda/bin:$PATH"
15+
source $PWD/miniconda/bin/activate
1516

1617
#Create conda environment if it doesn't already exist
1718
environment_name=testing123

0 commit comments

Comments
 (0)