今天,我尝试使用Python(3.6)的新版本。我通过pip安装了aiopg
(通过PyCharm解释器部分工具)。
在尝试导入aiopg
之后,发生了异常:
from aiopg.sa import create_engine
File "C:\Python36\lib\site-packages\aiopg\__init__.py", line 5, in <module>
from .connection import connect, Connection, TIMEOUT as DEFAULT_TIMEOUT
File "C:\Python36\lib\site-packages\aiopg\connection.py", line 4, in <module>
import fcntl
ModuleNotFoundError: No module named 'fcntl'
什么是
fcntl
?这是linux python native模块吗?无论如何它都不起作用。有什么办法吗? 最佳答案
aiopg==0.11
具有回归,但是全新的aiopg==0.12
应该在Windows上可以使用。
关于python - 现在aiopg支持python 3.6吗?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/39937084/