No module named 'tensorflow'
时间: 2023-06-21 17:20:11 浏览: 36
问题解决:module 'tensorflow.compat.v1' has no attribute '
5星 · 资源好评率100%
这个问题通常出现在你尝试在 Python 中导入 TensorFlow 时,但是你的系统中没有安装 TensorFlow 库。你可以通过使用以下命令来安装 TensorFlow:
```
pip install tensorflow
```
如果你使用的是 GPU 版本的 TensorFlow,你需要安装 CUDA 和 cuDNN 库。建议你查看 TensorFlow 的官方文档以获取更详细的安装说明。
阅读全文