tensorflow1安装
时间: 2023-11-18 15:51:42 浏览: 121
tensorflow安装
5星 · 资源好评率100%
TensorFlow 1的安装可以通过以下步骤完成:
1. 首先,确保已经安装了Python环境。TensorFlow 1需要Python 3.5.x、3.6.x或3.7.x版本。
2. 使用pip命令安装TensorFlow 1的CPU版本:
```
pip install tensorflow==1.15
```
如果你的机器支持GPU,并且希望安装TensorFlow 1的GPU版本,可以使用以下命令:
```
pip install tensorflow-gpu==1.15
```
注意:TensorFlow 1的GPU版本需要具备相应的NVIDIA GPU和CUDA环境。
3. 安装完成后,你就可以在Python代码中导入TensorFlow 1并开始使用了。例如:
```python
import tensorflow as tf
hello = tf.constant('hello,tensorflow')
sess = tf.Session()
print(sess.run(hello))
```
阅读全文