conda create --name python34 python=3.4
activate python34 # for Windows
source activate python34 # for Linux
conda remove --name python34 --all
conda list
conda list -n python34
conda install scipy
pip使用国内源的方式更加成熟,当下载特别慢的时候,建议使用pip,通过国内的镜像源进行安装。
conda search numpy
conda install -n python34 numpy
如果不用-n指定环境名称,则被安装在当前活跃环境
conda update -n python34 numpy
conda remove -n python34 numpy
conda update conda
conda update anaconda
conda update python
假设当前环境是python 3.4, conda会将python升级为3.4.x系列的当前最新版本。