⬅︎ Back to Decorated Concurrency - Python multiprocessing made really really easy
On Windows, one should add to imports:from multiprocessing import freeze_supportand before calling "run", add:if __name__ == "__main__": freeze_support() run()
Comment
On Windows, one should add to imports:
from multiprocessing import freeze_support
and before calling "run", add:
if __name__ == "__main__":
freeze_support()
run()