From 6c71a26613c90032007e80eca82e143350103f2a Mon Sep 17 00:00:00 2001 From: Matthias Mair Date: Tue, 26 Jul 2022 03:21:25 +0200 Subject: [PATCH] make sure pip is upgraded (#3401) At the beginning of installs --- tasks.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tasks.py b/tasks.py index d8eac3b1c6..87de041a8b 100644 --- a/tasks.py +++ b/tasks.py @@ -105,6 +105,7 @@ def install(c): print("Installing required python packages from 'requirements.txt'") # Install required Python packages with PIP + c.run('pip3 install --upgrade pip') c.run('pip3 install --no-cache-dir --disable-pip-version-check -U -r requirements.txt')