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)