TGC-VP/.envrc

12 lines
320 B
Plaintext
Raw Normal View History

distro=`/bin/lsb_release -i -s`
if [ $distro == "CentOS" ]; then
. /opt/rh/devtoolset-8/enable
. /opt/rh/llvm-toolset-7/enable
. /opt/rh/rh-python38/enable
2024-07-05 07:55:50 +02:00
elif [ $distro == "Rocky" ]; then
. /opt/rh/gcc-toolset-11/enable
fi
module load ./Modulefile
layout python3
[ -f .envrc.$USER ] && . .envrc.$USER