Skip to content

Commit 69d7fde

Browse files
committed
default to python and not pythonw because it is not automatically installed on Mac
1 parent 4e9f657 commit 69d7fde

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/compas/_os.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -195,7 +195,7 @@ def select_python(python_executable):
195195
return python
196196

197197
# Assume a system-wide install exists
198-
return python_executable or 'pythonw'
198+
return python_executable or 'python'
199199

200200

201201
def prepare_environment(env=None):

0 commit comments

Comments
 (0)