tensorflow安装记录
时间: 2023-10-20 18:17:50 浏览: 147
TensorFlow安装过程记录
以下是在 Ubuntu 系统上安装 TensorFlow 的步骤:
1. 安装 pip
```
sudo apt-get install python-pip
```
2. 安装 TensorFlow
```
pip install tensorflow
```
如果你的电脑支持 GPU 加速,可以安装 TensorFlow GPU 版本:
```
pip install tensorflow-gpu
```
3. 验证 TensorFlow 是否安装成功
在 Python 中输入以下代码,如果没有报错,则说明 TensorFlow 安装成功:
```
import tensorflow as tf
hello = tf.constant('Hello, TensorFlow!')
sess = tf.Session()
print(sess.run(hello))
```
以上就是 TensorFlow 的安装过程。需要注意的是,TensorFlow 的安装需要较高的系统配置,例如一定的 CPU、GPU、内存等。如果你的电脑配置较低,可能会出现安装失败或者使用不流畅的情况。
阅读全文