Python multiprocessing freezes code in Ubuntu

134 Views Asked by At

I am trying to run a piece of python code that calls the starmap function

result = self.pool.starmap(CURR_CODE.__some_func__, args)

I ran this on arch linux and had no issues. However, when I ran this on ubuntu, the code freezes. I don't get any output, nothing gets printed on the screen.

All my libraries are in a conda package in the ubuntu. This is not the case when I run the code on arch linux.

Any thoughts on how I can fix this issues?

Thanks in advance

0

There are 0 best solutions below