Answers for "check for python version in conda"

6

how to check version of pip in anaconda

pip --version
Posted by: Guest on March-26-2020
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

Code answers related to "check for python version in conda"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language