You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is there a way to make multiprocess work with pyinstaller builds? The built in multiprocessing module has support for this using the freeze_support() function.
The text was updated successfully, but these errors were encountered:
Can you give me more details, and maybe show me what you are experiencing? I would expect multiprocessing to work, as it's part of the python distribution and nothing needs to be installed. The multiprocess install is pure python, but is slightly non-standard (due to setup.py detecting the version of python being used and then building from the correct version of the multiprocess source). The freeze_support code in multiprocess is identical to the code in multiprocessing.
Is there a way to make multiprocess work with pyinstaller builds? The built in
multiprocessing
module has support for this using thefreeze_support()
function.The text was updated successfully, but these errors were encountered: