pycharm配置tensorflow环境
时间: 2023-05-01 19:01:12 浏览: 126
tensorflow的安装教程与pycharm的配置
在 PyCharm 中配置 TensorFlow 环境需要几个步骤:
1. 在 PyCharm 中打开项目,并在项目中创建一个新的虚拟环境。
2. 在命令行中使用 pip 安装 TensorFlow。
3. 在 PyCharm 中配置项目解释器,使用刚刚创建的虚拟环境中的 Python 。
4. 在项目中编写代码,使用 TensorFlow。
例如:
1. PyCharm 选择,File -> Settings -> Project -> Project Interpreter
2. 点击右边的 + 号,搜索 Tensorflow 安装
3. 编写代码,import tensorflow 开始使用.
阅读全文