AttributeError: module 'select' has no attribute 'poll'
时间: 2023-09-22 11:06:06 浏览: 384
AttributeError: module 'tensorflow.compat.v1' has no attribute '
这个错误 `AttributeError: module 'select' has no attribute 'epoll'` 是由于在 `select` 模块中没有找到 `epoll` 属性导致的。
如果你在使用 `select` 模块时遇到这个错误,可能是因为你的 Python 环境不支持 `epoll`。`epoll` 是一种用于异步 I/O 多路复用的机制,它在 Linux 下才可用。所以如果你在非 Linux 系统上运行代码,就会出现这个错误。
如果你的代码中确实需要使用 `epoll`,你可以考虑使用其他支持异步 I/O 的库,比如 `asyncio`。或者,你可以在运行代码的环境中使用支持 `epoll` 的 Python 版本。
如果你不需要使用 `epoll`,那么可以尝试使用其他可用的多路复用机制,比如 `select`、`poll` 或 `kqueue`,这些在不同操作系统上都有支持。<span class="em">1</span><span class="em">2</span><span class="em">3</span>
#### 引用[.reference_title]
- *1* *2* [关于 AttributeError: module ‘select‘ has no attribute ‘epoll](https://blog.csdn.net/weixin_42250835/article/details/89573354)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v93^chatsearchT3_1"}}] [.reference_item style="max-width: 50%"]
- *3* [Python 常见问题 之 AttributeError: module ‘select‘ has no attribute ‘epoll](https://blog.csdn.net/u014361280/article/details/113832861)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v93^chatsearchT3_1"}}] [.reference_item style="max-width: 50%"]
[ .reference_list ]
阅读全文