1. Windows 上安装 TensorFlow 流程
对于有英文基础的朋友,建议直接阅读官网安装教程。本答案翻译自 TensorFlow 官网。
系统环境要求:
Windows 上安装 TensorFlow 步骤:
检查系统是否已安装 Python 开发环境。如果已安装,则跳过该步骤。
python3 --version
pip3 --version
virtualenv --version
pip3 install -U pip virtualenv
virtualenv --system-site-packages -p python3 ./venv
.\venv\Scripts\activate
pip3 install --upgrade pip
pip list # 展示 venv 中已安装的软件包
deactivate # 使用完 TensorFlow 后,方可推出 venv 虚拟环境
pip3 install --upgrade tensorflow
python3 -c "import tensorflow as tf; tf.enable_eager_execution(); print(tf.reduce_sum(tf.random_normal([1000, 1000])))"
注:以上显示"Successfully installed …"即为安装成功。
Hello TensorFlow
在python的环境下执行:
import tensorflow as tf
# 定义常量操作 hello
hello = tf.constant("Hello TensorFlow")
# 创建一个会话
sess = tf.Session()
# 执行常量操作 hello并打印到标准输出
print(sess.run(hello))
第一步完成~