Comment

V P

On Windows, one should add to imports:

from multiprocessing import freeze_support

and before calling "run", add:

if __name__ == "__main__":
    freeze_support()
    run()