diff --git a/buildscripts/build_rcac_gnu.sh b/buildscripts/build_rcac_gnu.sh index 82f8cf68b..3c2238690 100755 --- a/buildscripts/build_rcac_gnu.sh +++ b/buildscripts/build_rcac_gnu.sh @@ -28,6 +28,11 @@ MACHINE_NAME=$(uname -n | awk -F. '{ print "Unknown"; } }') +if [[ $MACHINE_NAME == "bell" ]]; then + module load anaconda/2020.11-py38 +elif [[ $MACHINE_NAME == "negishi" ]]; then + module load anaconda/2022.10-py39 +fi if { conda env list | grep 'mintongroup'; } >/dev/null 2>&1; then echo "The mintongroup conda environment was detected" @@ -37,7 +42,6 @@ else fi - if [[ $MACHINE_NAME == "bell" ]]; then module purge module use /depot/daminton/etc/modules/bell diff --git a/buildscripts/build_rcac_intel.sh b/buildscripts/build_rcac_intel.sh index 58919182f..968bdc60f 100755 --- a/buildscripts/build_rcac_intel.sh +++ b/buildscripts/build_rcac_intel.sh @@ -29,6 +29,11 @@ MACHINE_NAME=$(uname -n | awk -F. '{ print "Unknown"; } }') +if [[ $MACHINE_NAME == "bell" ]]; then + module load anaconda/2020.11-py38 +elif [[ $MACHINE_NAME == "negishi" ]]; then + module load anaconda/2022.10-py39 +fi if { conda env list | grep 'mintongroup'; } >/dev/null 2>&1; then print -n "The mintongroup conda environment was detected"