参考: https://www.tensorflow.org/install/install_windows#installing_with_native_pip
1. 安装python和tensorflow
在 Windows 上,TensorFlow 支持 Python 3.5.x 和 3.6.x。请注意,Python 3 附带有 pip3 软件包管理器,您需使用此程序来安装 TensorFlow。
要安装 TensorFlow,请启动终端。然后在该终端中发出正确的 pip3 install 命令。要安装仅支持 CPU 的 TensorFlow 版本,请输入以下命令:
pip3 install --upgrade tensorflow
要安装 GPU 版本的 TensorFlow,请输入以下命令:
pip3 install --upgrade tensorflow-gpu
安装过程需要几分钟时间。
安装完tensorflow使用,打开cmd使用如下示例测试tensorflow:
python
在 Python 交互式 shell 中输入以下几行简短的程序代码:
# Python
import tensorflow as tf
hello = tf.constant('Hello, TensorFlow!')
sess = tf.Session()
print(sess.run(hello))
sess.close()
如果系统输出以下内容,就说明您可以开始编写 TensorFlow 程序了:
Hello, TensorFlow!
我的程序报错:ImportError: Could not find 'msvcp140.dll'
根据错误提示下载并安装Visual C++ 2015 redistributable 即可解决。
2. pycharm中使用tensorflow
file -> settings -> project: ** 设置python的安装路径(我这里是D:\Program Files (x86)\Python35)
将第一步中的示例写入pycharm,运行得到如下结果: