@buoge
2017-06-05T22:32:24.000000Z
字数 996
阅读 920
Python
http://docs.jinkan.org/docs/flask/installation.html#virtualenv
/Users/wuchuanbo/anaconda/bin/Python
http://www.jianshu.com/p/2f3be7781451
conda create --name python34 python=3.4
activate python34 # for Windows
source activate python34 # for Linux & Mac
python --version
Python 3.4.5 :: Anaconda 4.1.1 (64-bit)
,即系统已经切换到了3.4的环境deactivate python34 # for Windows
source deactivate python34 # for Linux & Mac
conda remove --name python34 --all
conda info -e
conda list
conda list -n python34
conda search numpy
conda install -n python34 numpy
conda update -n python34 numpy
conda remove -n python34 numpy
conda update conda
conda update anaconda
conda update python