beremiz

pythonw is used on OSX
python3
2022-11-09, GP Orcullo
a26453d1c54d
Parents 1fbc900ca1ce
Children 296e459efdfb
pythonw is used on OSX
--- a/LocalRuntimeMixin.py Sun Oct 30 13:20:58 2022 +0800
+++ b/LocalRuntimeMixin.py Wed Nov 09 10:59:00 2022 +0800
@@ -10,8 +10,8 @@
from util.ProcessLogger import ProcessLogger
from util.paths import Bpath
-LocalRuntimeInterpreterPath = \
- os.environ.get("BEREMIZPYTHONPATH", sys.executable)
+_exec = sys.executable if "darwin" not in sys.platform else sys.executable + 'w'
+LocalRuntimeInterpreterPath = os.environ.get("BEREMIZPYTHONPATH", _exec)
LocalHost = os.environ.get("BEREMIZ_LOCAL_HOST", "localhost")