AttributeError: module 'asyncio' has no attribute 'get_running_loop'
时间: 2023-10-13 14:07:10 浏览: 283
求解报错:AttributeError:module ‘os’ has no attribute ‘exit’
这个错误通常在 Python3.6 以下版本中出现,因为在这些版本中,`asyncio.get_running_loop()` 函数并不存在。相反,可以使用 `asyncio.get_event_loop()` 函数来获取当前运行的事件循环。
你可以尝试将代码中的 `asyncio.get_running_loop()` 替换为 `asyncio.get_event_loop()`,看看问题是否得以解决。如果你确实需要使用 `get_running_loop()` 函数,那么升级到 Python3.7 或更高版本就可以了。
阅读全文