import pathos
import pathos.multiprocessing as mp
import dill
print pool.map(pow, [1,2,3,4], [5,6,7,8])
when i run the above code it throws a error
cannot find pathos.multiprocessing
cannot import pathos
i tried all the possible ways but i could not find any solution. I was trying to work on a developing a code which takes more than 10 inputs and process them using multiprocessing instead of waiting in queue and generates output. For that i have tried multiprocessing, but it throws pickling error, so i tried to use pathos, but it says cannot import pathos. Can any one tell me the possible solution for this???