From 7509d74475fb8a4dc2e998e65096df98273226e0 Mon Sep 17 00:00:00 2001 From: Shawn Davis Date: Tue, 21 Jun 2022 20:40:37 -0500 Subject: [PATCH] Added support for pip install from file. --- scripttease/lib/commands/python.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripttease/lib/commands/python.py b/scripttease/lib/commands/python.py index e30fae4..0e4c861 100644 --- a/scripttease/lib/commands/python.py +++ b/scripttease/lib/commands/python.py @@ -49,7 +49,7 @@ def python_pip_file(path, venv=None, version=3, **kwargs): kwargs.setdefault("comment", "install packages from pip file %s" % path) - statement = "%s -r %s" % (manager, path) + statement = "%s install -r %s" % (manager, path) return Command(statement, **kwargs)