ModuleNotFoundError: No module named 'fcntl'

解决办法:在python路径下的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

注意:文件名:fcntl.py 而不是fncl.py

你可能感兴趣的:(Python)