pycharm搭建tensorflow环境
时间: 2023-04-28 14:03:14 浏览: 151
TensorFlow编程环境搭建
1. 首先,需要安装Python和PyCharm。可以从官方网站下载并安装。
2. 打开PyCharm,创建一个新的项目。
3. 在项目中,打开“Terminal”窗口。
4. 在Terminal中,输入以下命令来安装TensorFlow:
```
pip install tensorflow
```
5. 安装完成后,可以通过以下代码来测试TensorFlow是否正常工作:
```
import tensorflow as tf
hello = tf.constant('Hello, TensorFlow!')
sess = tf.Session()
print(sess.run(hello))
```
6. 如果输出“Hello, TensorFlow!”,则表示TensorFlow已经成功安装并可以正常工作。
7. 可以开始使用TensorFlow来进行机器学习和深度学习的开发了。
阅读全文