因为我的电脑的显卡是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))
问题解决