安装 TensorFlow 1.x 版本
时间: 2023-05-17 12:05:40 浏览: 478
Windows同时安装tensorflow多个版本(tensorflow 2.0和tensorflow 1.x.x)
安装 TensorFlow 1.x 版本的步骤如下:
1. 首先,确保你的电脑已经安装了 Python 2.7 或者 Python 3.4-3.6。
2. 打开命令行窗口,输入以下命令安装 TensorFlow:
pip install tensorflow==1.15
3. 安装完成后,可以通过以下命令验证 TensorFlow 是否安装成功:
python -c "import tensorflow as tf; print(tf.reduce_sum(tf.random.normal([1000, 1000])))"
如果输出了一个随机数的和,说明 TensorFlow 安装成功。
希望这个回答能够帮到你!
阅读全文