diff --git a/core/installation.py b/core/installation.py index e972253..1dd9047 100644 --- a/core/installation.py +++ b/core/installation.py @@ -192,7 +192,7 @@ class Install: newVersion = True 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") return newVersion