我在笔记本电脑上构建 python2.6.1。构建成功。之后我尝试使用 ./python 运行 python 并尝试导入选择模块
>>>import select
>>>select.epoll()
<select.epoll object at 0xb76140d0>
之后,我将 python 构建文件夹复制到另一个笔记本电脑并尝试运行 python
>>>import select
>>> select.epoll()
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
AttributeError: 'module' object has no attribute 'epoll'
如何解决这个问题呢