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
When running in standalone mode on MacOS, having a window open another window causes the following error:
The process has forked and you cannot use this CoreFoundation functionality safely. You MUST exec().
Break on __THE_PROCESS_HAS_FORKED_AND_YOU_CANNOT_USE_THIS_COREFOUNDATION_FUNCTIONALITY___YOU_MUST_EXEC__() to debug.
This seems to be related to the _MultiAppLaunch class within standalone.py
The text was updated successfully, but these errors were encountered:
There's also a workaround someone came up with in case you're using Python 2, I can't tell if it'll be of any help though.
If you were to use win.show(instance=True), then it will not spawn a new process, but as a downside certain things will be shared between the windows such as the palette. If you're working in Python 3 and the top solution works for you, I'll just default this to True for MacOS Py2 to avoid the error.
When running in standalone mode on MacOS, having a window open another window causes the following error:
This seems to be related to the _MultiAppLaunch class within standalone.py
The text was updated successfully, but these errors were encountered: