update pip first before installing packages

This commit is contained in:
Jeffrey Paul 2021-09-12 05:24:38 +00:00
parent c9c42cbec7
commit 559d0ed93b
1 changed files with 5 additions and 0 deletions

View File

@ -6,6 +6,11 @@ PYTHON_PKGS="
virtualenv
"
# first, upgrade pip:
/usr/bin/pip3 install --upgrade --user pip
for PKG in $PYTHON_PKGS ; do
/usr/bin/pip3 install --user $PKG
done