From ef1e5983418eb118ec1876ce1e090e40aa681138 Mon Sep 17 00:00:00 2001 From: Oliver Walters Date: Fri, 21 Aug 2020 21:32:08 +1000 Subject: [PATCH] Install PIP requirements as a part of "invoke install" --- tasks.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tasks.py b/tasks.py index 4725e32ef1..498b7fc758 100644 --- a/tasks.py +++ b/tasks.py @@ -90,7 +90,7 @@ def install(c): """ # Install required Python packages with PIP - #c.run('pip3 install -U -r requirements.txt') + c.run('pip3 install -U -r requirements.txt') # If a config.yaml file does not exist, copy from the template! CONFIG_FILE = os.path.join(localDir(), 'InvenTree', 'config.yaml')