python 项目运行时,抛出 ModuleNotFoundError: No module named ‘fcntl‘ 异常
问题python 项目运行时,抛出ModuleNotFoundError: No module named ‘fcntl’解决方法:在 python 安装目录 中 Lib目录( 比如: C:\Python\Python36\Lib ),创建 fcntl.py ,内容如下:def fcntl(fd, op, arg=0):return 0def ioctl(fd, op, arg=0, mutabl
·
问题
python 项目运行时,抛出 ModuleNotFoundError: No module named ‘fcntl’
解决方法:
在 python 安装目录 中 Lib目录( 比如: C:\Python\Python36\Lib
),创建 fcntl.py
,内容如下:
def fcntl(fd, op, arg=0):
return 0
def ioctl(fd, op, arg=0, mutable_flag=True):
if mutable_flag:
return 0
else:
return ""
def flock(fd, op):
return
def lockf(fd, operation, length=0, start=0, whence=0):
return
如果运行还报错,则在项目的虚拟环境的 Lib
目录下也添加此文件。
开放原子开发者工作坊旨在鼓励更多人参与开源活动,与志同道合的开发者们相互交流开发经验、分享开发心得、获取前沿技术趋势。工作坊有多种形式的开发者活动,如meetup、训练营等,主打技术交流,干货满满,真诚地邀请各位开发者共同参与!
更多推荐
已为社区贡献22条内容
所有评论(0)