AnacondaUsage
虚拟环境
新建
conda create --name envname python=3.6 # 指定环境名及python版本conda env create -f environment.ymlname: stats
dependencies:
- numpy
- pandasname: stats2
channels:
- javascript
dependencies:
- python=3.4 # or 2.7
- bokeh=0.9.2
- numpy=1.9.*
- nodejs=0.10.*
- flask
- pip:
- Flask-Testing激活
取消激活
删除环境
查看已有环境
查看环境已有包
安装包
设置国内源
最后更新于