7
mirror of https://gitlab.com/kicad/code/kicad.git synced 2025-04-21 00:21:25 +00:00

API: pip should prefer binary wheels when available

This commit is contained in:
Jon Evans 2024-12-20 16:43:32 -05:00
parent 425958d754
commit 83984dd207

View File

@ -466,7 +466,7 @@ void API_PLUGIN_MANAGER::processNextJob( wxCommandEvent& aEvent )
env.env[wxS( "VIRTUAL_ENV" )] = *pythonHome;
wxString cmd = wxString::Format(
wxS( "-m pip install --no-input --isolated --require-virtualenv "
wxS( "-m pip install --no-input --isolated --prefer-binary --require-virtualenv "
"--exists-action i -r '%s'" ),
reqs.GetFullPath() );