Python multiprocessing on Windows 10

前端 未结 1 1809
南旧
南旧 2020-12-30 11:52

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         


        
1条回答
  •  旧时难觅i
    2020-12-30 12:49

    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.

    0 讨论(0)
提交回复
热议问题