From 4347da5e52c7b2e0438b87cb6698494f7fab417e Mon Sep 17 00:00:00 2001 From: thkuo Date: Wed, 7 Jul 2021 09:26:44 +0200 Subject: [PATCH] detect conda and python versions for SETENV --- install/SETENV.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/install/SETENV.sh b/install/SETENV.sh index 943e4efb7..7159289d8 100755 --- a/install/SETENV.sh +++ b/install/SETENV.sh @@ -60,6 +60,10 @@ else fi echo 'Creating environment "'$core_env_name'"' +# check conda and python versions +echo $( conda -V ) +echo $( python -V ) + # ensure the conda channels check_conda_channels ||{ echo "Errors in setting conda channels"; exit; } if [ -d $( dirname $( dirname $( which conda ) ) )/envs/$core_env_name ]; then