Exec pip from virtual env

This commit is contained in:
adator
2024-10-04 00:22:50 +02:00
parent ad5b7ffbf2
commit fd88df1017

View File

@@ -192,7 +192,7 @@ class Install:
newVersion = True newVersion = True
if newVersion: if newVersion:
self.run_subprocess(['pip', 'install', '--upgrade', package.name]) self.run_subprocess([self.config.venv_pip_executable, 'install', '--upgrade', package.name])
print(f"> Dependencies versions ==> OK") print(f"> Dependencies versions ==> OK")
return newVersion return newVersion