Win7 64位系统下CPU版Tensorflow的安装

因为我的电脑的显卡是AMD不是NVIDIA,所以装的是CPU版的Tensorflow

(一)安装环境

Win7 64位系统

Python3.5(如果已经装了3.6建议再装一个3.5)


在命令行输入python,可得到版本信息(如下图)

 

 

(二)安装步骤

1. 在命令行窗口输入 pip install tensorflow

在安装成功后准备 import tensorflow as tf

报错:找不到MSVCP140.DLL模块,并提示要安装VS C++2015

解决方法:在Path环境变量前面加上E:\Program Files1\Python\Lib\site-packages\matplotlib;(即MSVCP140.DLL的路径)

2.在python中输入

import tensorflow as tf 

hello = tf.constant(' TensorFlow!') 

sess = tf.Session() 

print(sess.run(hello))

测试tensorflow是否能够正常使用

 

然后出现了一串警告:

Your CPU supports instructions that thisTensorFlow binary was not compiled to use: AVX AVX2

加入两行:

import os

os.environ['TF_CPP_MIN_LOG_LEVEL']='2'

import tensorflow as tf 

hello = tf.constant(' TensorFlow!') 

sess = tf.Session() 

print(sess.run(hello))

问题解决

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值