No module named 'tensorflow' phycharm
时间: 2023-11-14 18:09:04 浏览: 91
tensorflow.md
这个错误提示是因为你的项目中没有安装 TensorFlow 库。你可以通过以下命令在 PyCharm 中安装 TensorFlow:
1. 打开 PyCharm,进入项目环境;
2. 点击菜单栏中的 File -> Settings -> Project: your_project_name -> Python Interpreter;
3. 在 Python Interpreter 界面中,点击右上角的“+”按钮,搜索 tensorflow 并安装即可。
如果你使用的是 Anaconda 环境,可以通过以下命令安装 TensorFlow:
```
conda install tensorflow
```
阅读全文