-
Notifications
You must be signed in to change notification settings - Fork 19
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
No module named 'fcntl' #1
Comments
any solution |
Same here with Windows 7 64 bit. This answer at StackOverflow provides an explanation. It seems |
A temporary and potentially dangerous hack, but it allows Create a file named 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
LOCK_EX = 2
LOCK_NB = 4 Adapted from: https://stackoverflow.com/a/25471508/5541079 I didn't test the functionality, but it looks like use of |
@altugozcelikkale GUI starts now with this fix! |
Hi,
on windows 10 64 -bit i am getting this error:
import fcntl
ModuleNotFoundError: No module named 'fcntl'
The text was updated successfully, but these errors were encountered: