From fd88df1017f6fd703db1d31d10f3b6d4dea02b38 Mon Sep 17 00:00:00 2001 From: adator <85586985+adator85@users.noreply.github.com> Date: Fri, 4 Oct 2024 00:22:50 +0200 Subject: [PATCH] Exec pip from virtual env --- core/installation.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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