Answers for "check python version conda"

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 "^pythons";'
Posted by: Guest on May-07-2021
1

how to activate conda environment

conda activate myenv
Posted by: Guest on August-23-2020

Code answers related to "check python version conda"

Browse Popular Code Answers by Language