AttributeError: module ‘select’ has no attribute 'epoll’
Posted sea-stream
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了AttributeError: module ‘select’ has no attribute 'epoll’相关的知识,希望对你有一定的参考价值。
场景:mac 下导入的 ‘select’ 包 import select,
然后在 主函数
中创建的 epoll
对象 epl = select.epoll(),运行报错如下
Traceback (most recent call last): File "tests.py", line 77, in <module> emsc.run() File "tests.py", line 16, in run epoll = select.epoll() AttributeError: module ‘select‘ has no attribute ‘epoll‘
python官方文档介绍
select.epoll([sizehint=-1]) (Only supported on Linux 2.5.44 and newer.) Returns an edge polling object, which can be used as Edge or Level Triggered interface for I/O events; see section Edge and Level Trigger Polling (epoll) Objects below for the methods supported by epolling objects.
答案:仅仅支持Linux2.5.44或更高版本。
参考:
https://blog.csdn.net/weixin_42250835/article/details/89573354
以上是关于AttributeError: module ‘select’ has no attribute 'epoll’的主要内容,如果未能解决你的问题,请参考以下文章
AttributeError:模块 'urllib' 没有属性 'parse'
tensorflow -----AttributeError: module ‘tensorflo
新的 Kivy 安装:AttributeError: 'module' 对象没有属性 'require'
类 InstagramSpider(scrapy.Spider): AttributeError: 'module' 对象没有属性 'Spider'
api = twitter.Api() AttributeError: 'module' 对象没有属性 'Api
安装pytest-allure-adaptor后,运行报错:AttributeError: module 'pytest' has no attribute 'allure