AttributeError: module 'tensorflow.compat.v2' has no attribute 'app
时间: 2023-09-22 21:12:14 浏览: 180
pycharm用import报错:AttributeError: module tensorflow(or other) has no attribut (import搜索路径顺序问题)
这个错误通常发生在 TensorFlow 2.x 版本中,因为在 TensorFlow 2.x 中,`tensorflow.compat.v2` 模块已经被移除掉了。解决这个错误的方法是将导入语句中的 `tensorflow.compat.v2` 替换为 `tensorflow`,或者使用 TensorFlow 1.x 版本。下面是一个替换示例:
```python
# 错误示例
import tensorflow.compat.v2 as tf
from tensorflow.compat.v2 import app
# 正确示例
import tensorflow as tf
from tensorflow import app
```
阅读全文