Answers for "check the current anaconda environment"

C++
0

check python version conda env

conda env list | grep -v "^$\|#" |awk '{print $1;}'|xargs -I{} -d "\n" sh -c 'printf "Env: {}\t"; conda list -n {} |grep "^python\s";'
Posted by: Guest on May-07-2021
7

see conda enviroments

conda env list
Posted by: Guest on August-23-2020

Code answers related to "check the current anaconda environment"

Browse Popular Code Answers by Language