标签:ann pytho url 官网 学习 成功 not https channels
1. 下载Anaconda(首选官网,但很慢)
2. 配置一些源,否则太慢。
=== 已经成功,运行 conda install numpy
测试一下吧。
不过,建议搭建虚拟环境,也很方便。
创建虚拟环境 conda create -n ‘环境名xxx‘ python=‘版本号‘
conda config --add channels ‘https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/‘
conda config --set show_channel_urls yes
conda create -n python27 python=2.7.11
3. 激活下载各种库
source activate python27
pip install numpy;
pip install pandas;
pip install tensorflow;
pip install jupyter;
4. 使用
source activate python27
jupyter notebook
标签:ann pytho url 官网 学习 成功 not https channels
原文地址:http://www.cnblogs.com/jkmiao/p/5989291.html