首页 > 代码库 > tensorflow 学习1 环境搭建
tensorflow 学习1 环境搭建
1. 下载Anaconda(首选官网,但很慢)
- Anaconda2-4.0.0-Linux-x86_64.sh
- Anaconda 安装包还可以到 https://mirrors.tuna.tsinghua.edu.cn/anaconda/archive/ 下载。
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
tensorflow 学习1 环境搭建
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。