import pyudev报错AttributeError: module 'collections' has no attribute 'abc'
时间: 2023-10-09 21:06:44 浏览: 257
pycharm用import报错:AttributeError: module tensorflow(or other) has no attribut (import搜索路径顺序问题)
这个报错是由于在 Python 3.9 版本中,collections.abc 模块被重命名为 collections.abc,所以在旧版本的库中可能会出现这个错误。要解决这个问题,你可以尝试将代码中的 "import collections" 改为 "import collections.abc"。这样就能正确地导入 collections.abc 模块并避免 AttributeError 错误。
阅读全文