python2.7安装tensorflow1.12
时间: 2023-03-16 07:49:33 浏览: 337
python安装tensorflow
安装TensorFlow 1.12需要以下步骤:
1. 确认您的Python版本为2.7,并且已经安装pip。
2. 打开命令行窗口,输入以下命令安装TensorFlow:
```
pip install tensorflow==1.12
```
3. 等待安装完成,可以通过以下命令验证TensorFlow是否安装成功:
```
python -c "import tensorflow as tf; print(tf.__version__)"
```
如果输出1.12.0,则表示TensorFlow已经成功安装。
注意:TensorFlow 1.12不支持Python 3.x版本,如果您的Python版本为3.x,请安装TensorFlow 2.x版本。
阅读全文