import tensorflow.compat.v2 as tf ModuleNotFoundError: No module named 'tensorflow'
时间: 2023-07-02 18:05:11 浏览: 225
Tensorflow安装问题: Could not find a version that satisfies the requirement tensorflow
5星 · 资源好评率100%
这个错误提示说明你的系统没有找到 tensorflow 模块。可能是因为你没有安装 tensorflow 或者安装不正确。你可以尝试重新安装 tensorflow 并确保安装过程中没有出现错误。你可以在命令行中使用以下命令安装 tensorflow:
```
pip install tensorflow
```
如果你使用的是 Anaconda 环境,可以尝试以下命令:
```
conda install tensorflow
```
如果你已经安装了 tensorflow ,但仍然出现这个错误,可能是因为你的 Python 环境没有正确配置。你可以尝试升级你的 Python 版本或者重新配置你的 Python 环境。
阅读全文