ModuleNotFoundError: No module named 'tensorflow.contrib'
时间: 2023-06-22 15:43:09 浏览: 181
不降级解决No module named ‘tensorflow.contrib‘.pdf
这个错误可能是因为你正在使用的 TensorFlow 版本不再支持 tensorflow.contrib 模块。在 TensorFlow 2.0 中,tensorflow.contrib 模块已被删除。如果你正在使用 TensorFlow 2.0 或更高版本,那么你需要修改你的代码,以使用 TensorFlow 的新 API。
如果你确实需要使用 tensorflow.contrib 模块,那么你需要使用 TensorFlow 1.x 版本。你可以通过以下命令安装 TensorFlow 1.x:
```
pip install tensorflow==1.15
```
请注意,TensorFlow 1.x 和 TensorFlow 2.x 有很多不同之处,因此你需要相应地修改你的代码以适应你所选择的版本。
阅读全文