joblib.Parallel running through spyder hanging on Windows
问题 I'm running Python 3.5.1 on Windows Server 2013 at work. I have some embarrassingly parallel tasks that seem to work on Python 2.7 with basically the same code, but I am unable to figure out how to get it to run on Python 3.5.1. I'm using Anaconda 2.4.1 The code looks like this... I've stripped it down to basically the minimum. \ ->main.py \apackage\ ->__init__.py ->amodule.py Code for main.py from tpackage import AClass def go(): x = AClass().AFunction() return x if __name__ == '__main__': x