Pathos Multiprocessing Pool Cpickle Error
When i tried to run the following code: from pathos.multiprocessing import ProcessingPool as Pool list1 = [1,2,3,4,5] list2 = [6,7,8,9,10] def function1(x,y): print x print
Solution 1:
I'm the pathos
author. When I try your code, I don't get an error. However, if you are seeing a CPickle.PicklingError
, I'm guessing you have an issue with your install of multiprocess
. You are on windows, so do you have a C compiler? You need one for multiprocess
to get a full install of multiprocess
.
Post a Comment for "Pathos Multiprocessing Pool Cpickle Error"