From dd0efc9428dcdb54b2031c8e5b4f5c10643827d7 Mon Sep 17 00:00:00 2001 From: Juhani Numminen Date: Wed, 14 Jul 2021 11:17:50 +0300 Subject: [PATCH] macOS: make the .app able to start up Launching the app in a Terminal window works (by typing 'PySolFC.app/Contents/MacOS/PySolFC') but clicking in Finder window fails. emulate_shell_environment might fix this per https://github.com/pyinstaller/pyinstaller/issues/5109#issuecomment-808033464 --- setup_osx.py | 1 + 1 file changed, 1 insertion(+) diff --git a/setup_osx.py b/setup_osx.py index bbb3749f..9ba0da89 100644 --- a/setup_osx.py +++ b/setup_osx.py @@ -58,6 +58,7 @@ RESOURCES = [] FRAMEWORKS = [SOLVER_LIB_PATH] if SOLVER_LIB_PATH else [] # with argv_emulation=True, the app window is not shown when launched OPTIONS = dict(argv_emulation=False, + emulate_shell_environment=True, plist=PLIST, iconfile=ICON_FILE, resources=RESOURCES,