Browse Source

API: pip should prefer binary wheels when available

pcb_db
Jon Evans 1 year ago
parent
commit
83984dd207
  1. 2
      common/api/api_plugin_manager.cpp

2
common/api/api_plugin_manager.cpp

@ -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() );

Loading…
Cancel
Save