make sure pip is upgraded (#3401)

At the beginning of installs
This commit is contained in:
Matthias Mair 2022-07-26 03:21:25 +02:00 committed by GitHub
parent 58bff32342
commit 6c71a26613
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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')