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

Do not try to install source packages in python environments

This commit is contained in:
Jon Evans 2025-01-10 21:51:49 -05:00
parent 54e8233b36
commit d9e1d3725e

View File

@ -521,7 +521,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 --prefer-binary --require-virtualenv "
wxS( "-m pip install --no-input --isolated --only-binary :all: --require-virtualenv "
"--exists-action i -r \"%s\"" ),
reqs.GetFullPath() );