AttributeError: module 'logging' has no attribute 'getLogger'
时间: 2023-09-25 22:15:39 浏览: 141
AttributeError: module 'tensorflow.compat.v1' has no attribute '
这个错误可能是由于在你的代码中使用了 logging 模块,但是没有正确地导入或使用该模块。
你可以尝试添加以下代码来导入 logging 模块:
```
import logging
```
如果你已经导入了 logging 模块,那么可能是因为你的代码中有一个名为 logging.py 的文件,而它与 Python 自带的 logging 模块发生了冲突。如果是这种情况,你需要将该文件重命名或移动到其他地方。
另外,你还可以尝试更新 Python 版本或重新安装 logging 模块来解决该问题。
阅读全文