I\'m running some code on both a Windows 7 pc and a Windows 10 laptop:
def project(filename): **Do Something Here** if __name__ == \'__main__\': po
Had similar issue. As I found, it was just a bug in python in my case: https://bugs.python.org/issue35797
It occurs when using multiprocessing through venv.
Bugfix is released in Python 3.7.3.