Addon Manager: Disable pip version check

This commit is contained in:
Chris Hennes
2022-04-03 16:32:33 -05:00
parent 9a7b411659
commit 2f703e4627

View File

@@ -1326,7 +1326,7 @@ class DependencyInstallationWorker(QtCore.QThread):
if QtCore.QThread.currentThread().isInterruptionRequested():
return
proc = subprocess.run(
[python_exe, "-m", "pip", "install", "--target", vendor_path, pymod],
[python_exe, "-m", "pip", "install", "--disable-pip-version-check", "--target", vendor_path, pymod],
stdout=subprocess.PIPE,
stderr=subprocess.PIPE,
)