16 lines
302 B
Bash
Executable File
16 lines
302 B
Bash
Executable File
#!/bin/bash
|
|
|
|
#if [ $# != 1 ]; then
|
|
# echo "Usage: $0 [alvra|bernina]"
|
|
# exit 1
|
|
#fi
|
|
|
|
dest=/sf/bernina/applications/anaconda/bernina36_test
|
|
|
|
echo Loading PSI Anaconda Python distribution 3.6
|
|
module load psi-python36/4.4.0
|
|
|
|
echo Activating BERNINA Conda test environment
|
|
source activate $dest
|
|
|