multiprocessing.Pool in jupyter notebook works on linux but not windows

前端 未结 1 1346
栀梦
栀梦 2021-02-04 03:17

I\'m trying to run a few independent computations (though reading from the same data). My code works when I run it on Ubuntu, but not on Windows (windows server 2012 R2), where

相关标签:
1条回答
  • 2021-02-04 04:11

    I would post this as a comment since I don't have a full answer, but I'll amend as I figure out what is going on.

    from multiprocessing import Pool
    
    def f(x):
        return x**2
    
    if __name__ == '__main__':
        pool = Pool(4)
        for res in pool.map(f,range(20)):
            print(res)
    

    This works. I believe the answer to this question is here. In short, the subprocesses do not know they are subprocesses and are attempting to run the main script recursively.

    This is the error I am given, which gives us the same solution:

    RuntimeError: 
            An attempt has been made to start a new process before the
            current process has finished its bootstrapping phase.
    
            This probably means that you are not using fork to start your
            child processes and you have forgotten to use the proper idiom
            in the main module:
    
                if __name__ == '__main__':
                    freeze_support()
                    ...
    
            The "freeze_support()" line can be omitted if the program
            is not going to be frozen to produce an executable.
    
    0 讨论(0)
提交回复
热议问题