anaconda3创建py2环境

查看conda的py环境
conda info -e

# 创建一个名为python34的环境,指定Python版本是3.4(创建py27操作一样)
conda create --name python34 python=3.4


# 安装好后,使用activate激活某个环境
source activate python34 

# 激活后,会发现terminal输入的地方多了python34的字样

# 此时,再次输入
python --version

# 如果想返回默认的python 2.7环境,运行
source deactivate python34 # for Linux & Mac

 
# 删除一个已有的环境
conda remove --name python34 --all

上一篇:设计模式学习(沙盒模式)


下一篇:python使用虚拟环境 --- virtualenv