码迷,mamicode.com
首页 > Windows程序 > 详细

win版fcntl 解决

时间:2019-01-14 11:02:30      阅读:3935      评论:0      收藏:0      [点我收藏+]

标签:collect   ack   文件夹   mat   win   def   新建   return   match   

pip install fcntl

Collecting fcntl
Could not find a version that satisfies the requirement fcntl (from versions: )
No matching distribution found for fcntl

解决 自己新建一个: fcntl.py文件, 将其存放Python的安装目录: C:\Python27\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
--------------------- 

Stack Overflow
参考

win版fcntl 解决

标签:collect   ack   文件夹   mat   win   def   新建   return   match   

原文地址:https://www.cnblogs.com/mxh1099/p/10265260.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!