We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 69d7fde commit d9e3c17Copy full SHA for d9e3c17
src/compas/_os.py
@@ -194,8 +194,10 @@ def select_python(python_executable):
194
if os.path.exists(python):
195
return python
196
197
+ default_exe = 'pythonw' if is_windows() else 'python'
198
+
199
# Assume a system-wide install exists
- return python_executable or 'python'
200
+ return python_executable or default_exe
201
202
203
def prepare_environment(env=None):
0 commit comments