码迷,mamicode.com
首页 > 其他好文 > 详细

Anaconda中使用虚拟环境

时间:2015-11-09 20:46:31      阅读:165      评论:0      收藏:0      [点我收藏+]

标签:

conda create -n py33 python=3.3 anaconda

  Here the folders are created by default in Anaconda\envs, so you need to set the PATH as:

set PATH=C:\Anaconda\envs\py33\Scripts;C:\Anaconda\envs\py33;%PATH%

如果没有设置环境变量,则必须切换到目录下运行。

  Now it should work in the command window:

activate py33

  This the windows equivalent to the code that normally appears in the tutorials for Mac and Linux:$ source activate py33

Anaconda中使用虚拟环境

标签:

原文地址:http://www.cnblogs.com/njuzwr/p/4950790.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!