Anaconda默认python 3.7 要使用 python3.6

本文对应github: https://github.com/hbulpf/pydemo

Anaconda默认python 3.7 要使用 python3.6

conda create -n py36 python=3.6 #建立python3.6的虚拟环境,并将虚拟环境命名为py36
# To activate this environment, use:
# > source activate py36
#
# To deactivate an active environment, use:
# > source deactivate

激活python3.6版本,使用命令:

source activate py36

退出python3.6,使用命令:

source deactivate

[Tips]:
~/.bash_profile文件的末尾加上source activate py36,用户登录后将自动切换到(py36)环境

cat <>~/.bash_profile
#get python36
source activate py36
EOM
source ~/.bash_profile

如果认为本文不错,关注公众号可获得更多优质文章哦 _
Anaconda默认python 3.7 要使用 python3.6_第1张图片

你可能感兴趣的:(python)