pycharm使用tensorflow环境
时间: 2023-04-20 08:04:11 浏览: 139
使用Anaconda3+Pycharm配置tensorflow-gpu2.0.0深度学习环境经验分享
5星 · 资源好评率100%
PyCharm使用TensorFlow环境的方法:
1. 安装TensorFlow库:在PyCharm的终端中输入 "pip install tensorflow"
2. 创建虚拟环境:File -> Settings -> Project -> Project Interpreter -> 右上角 + 号 -> 选择"TensorFlow"
3. 选择虚拟环境:File -> Settings -> Project -> Project Interpreter -> 选择刚刚创建的虚拟环境。
4. 测试TensorFlow:在PyCharm中新建一个.py文件,输入 "import tensorflow as tf",如果没有报错,说明TensorFlow环境配置成功。
阅读全文