win版fcntl 解决
Posted mxh1099
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了win版fcntl 解决相关的知识,希望对你有一定的参考价值。
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:Python27Lib 下. 或者项目根文件夹下即可
# 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
---------------------
以上是关于win版fcntl 解决的主要内容,如果未能解决你的问题,请参考以下文章
关于mysql驱动版本报错解决,Cause: com.mysql.jdbc.exceptions.jdbc4Unknown system variable ‘query_cache_size(代码片段
[vscode]--HTML代码片段(基础版,reactvuejquery)