Python Multiprocessing On Windows 10
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__': pool = Pool(processes=4)
Solution 1:
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.
Post a Comment for "Python Multiprocessing On Windows 10"