From 7cf1c494b4bde7535d326e46707c2a5703f34201 Mon Sep 17 00:00:00 2001 From: Matthias Mair Date: Mon, 22 Jun 2026 22:52:47 +0200 Subject: [PATCH] reference pip instead --- src/backend/InvenTree/plugin/installer.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/backend/InvenTree/plugin/installer.py b/src/backend/InvenTree/plugin/installer.py index d39ebd53cd..f01e74c52e 100644 --- a/src/backend/InvenTree/plugin/installer.py +++ b/src/backend/InvenTree/plugin/installer.py @@ -29,7 +29,7 @@ def pip_command(*args) -> str: """ python = sys.executable - command = [python, '-m', 'pip3'] + command = [python, '-m', 'pip'] command.extend(args)