tensorflow安装教程

修改源镜像

conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/main/
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/conda-forge/
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/msys2/
conda config --set show_channel_urls yes
# 从 C:\Users\用户名XXX\.condarc  中删除--default

创建环境

conda create --name py3 python=3.5
conda info --envs  #检测安装
#conda remove -n python3--all  #删除环境
activate py3   #安装完成后进入环境
deactivate 
Linux环境下前面要加 source

使用pip安装

#可能需要更新pip
python -m pip install --upgrade pip
pip install --upgrade --ignore-installed tensorflow

使用conda安装

conda install tensorflow
# 测试安装
import tensorflow as tf
hello = tf.constant('Hello,tensorflow')
sess = tf.Session()
print(sess.run(hello))
# 可能需要配置报错的问题
import os 
os.environ['TF_CPP_MIN_LOG_LEVEL'] = '2'

错误原因参考

配置jupyter

pip install ipykernel
python -m ipykernel install --name tf

重新设置DNS,使用github

进入 C:\Windows\System32\drivers\etc\hosts
151.101.72.249 global-ssl.fastly.Net
192.30.253.112 github.com
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值