Python executable for MAC is python

This commit is contained in:
NissimHadar 2018-10-24 15:57:06 -07:00
parent 936c3beea0
commit 34a03bfc99

View file

@ -19,7 +19,13 @@ public:
QString getPythonCommand();
private:
#ifdef Q_OS_WIN
const QString _pythonExe{ "python.exe" };
#endif
#ifdef Q_OS_MACOS
const QString _pythonExe{ "python" };
#endif
QString _pythonCommand;
};