diff --git a/src/support/os.cpp b/src/support/os.cpp index af68fc4a06..9a901cfd02 100644 --- a/src/support/os.cpp +++ b/src/support/os.cpp @@ -128,6 +128,10 @@ static string const find_python_binary() } } + // last chance: try the unversioned name + if (command.empty()) + command = python_call("python"); + if (!command.empty()) return command;