conda check python version code example
Example 1: conda set python version
conda search python
conda install python=3.6.2
Example 2: 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";'