I am new at Python and I try to write a script for Streamlabs Chatbot using interprocess communication. The problem is that the chatbot thows an error when I include the following line to the file:
import multiprocessing
Error message:
"No module named fcntl"
My operation system is Windows, and I googled that "fcntl" is not available here. However, when I execute the same command from the command line, it works! So I may suggest that the chatbot somehow tries to use Unix-libraries instead of the Windows ones in some cases. So maybe I have to force the chatbot to use the appropriate libraries, but I don't know how.