7
mirror of https://gitlab.com/kicad/code/kicad.git synced 2025-04-05 00:15:30 +00:00

Implement searching for Python on Windows

This commit is contained in:
Jon Evans 2025-01-01 11:32:41 -05:00
parent 3e1fd974dc
commit 34dad3aa79

View File

@ -106,8 +106,8 @@ wxString PYTHON_MANAGER::FindPythonInterpreter()
#if defined( __WINDOWS__ )
wxFileName pythonExe = FindKicadFile( "python.exe" );
if( pythonExe.IsFileExecutable() )
return pythonExe.GetFullPath();
//if( pythonExe.IsFileExecutable() )
// return pythonExe.GetFullPath();
#elif defined( __WXMAC__ )
wxFileName pythonExe( PATHS::GetOSXKicadDataDir(), wxEmptyString );
pythonExe.RemoveLastDir();
@ -125,13 +125,19 @@ wxString PYTHON_MANAGER::FindPythonInterpreter()
// In case one is forced with cmake
pythonExe.Assign( wxString::FromUTF8Unchecked( PYTHON_EXECUTABLE ) );
if( pythonExe.IsFileExecutable() )
return pythonExe.GetFullPath();
//if( pythonExe.IsFileExecutable() )
// return pythonExe.GetFullPath();
// Fall back on finding any Python in the user's path
#ifdef _WIN32
// TODO(JE) where
wxArrayString output;
if( 0 == wxExecute( wxS( "where python.exe" ), output, wxEXEC_SYNC ) )
{
if( !output.IsEmpty() )
return output[0];
}
#else
wxArrayString output;