yoori / flare-bypasser

Server to bypass CloudFlare protection (solve challenges after Oct 2024)
MIT License
1 stars 0 forks source link

Add Windows Support: Replace fcntl with Windows-Compatible Alternative #1

Open krondelsina opened 3 hours ago

krondelsina commented 3 hours ago

Hello,

I am trying to run the project on a Windows machine, but I encountered the following error:

ModuleNotFoundError: No module named 'fcntl'

The fcntl module is not available on Windows, as it is specific to UNIX-based systems (Linux/macOS). Could you please add support for Windows by either replacing fcntl with a compatible alternative or using conditional imports that only load fcntl on UNIX systems?

Thank you!

dataflowjs commented 2 hours ago

@krondelsina hello, can you provide the minimal not working code that you have?