andrewdotcallahan
Results
2
comments of
andrewdotcallahan
Personally, I was able to get this working on OSX by changing the default multiprocessing behavior from `spawn` (OSX default as of Python 3.8 I think) to `fork` (Linux default)....
Do note that the linked python docs state: > Changed in version 3.8: On macOS, the spawn start method is now the default. The fork start method should be considered...