From 462e628e34e972c39ce7df067ff02460ddd54566 Mon Sep 17 00:00:00 2001 From: downtownallday Date: Sun, 6 Mar 2022 10:54:09 -0500 Subject: [PATCH] Fix pip execution --- setup/management.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup/management.sh b/setup/management.sh index f66aa2e0..7d69840f 100755 --- a/setup/management.sh +++ b/setup/management.sh @@ -42,12 +42,12 @@ if [ ! -d $venv ]; then fi # Upgrade pip because the Ubuntu-packaged version is out of date. -hide_output $venv/bin/pip install --upgrade pip +hide_output $venv/bin/python3 -m pip install --upgrade pip # Install other Python 3 packages used by the management daemon. # The first line is the packages that Josh maintains himself! # NOTE: email_validator is repeated in setup/questions.sh, so please keep the versions synced. -hide_output $venv/bin/pip install --upgrade \ +hide_output $venv/bin/python3 -m pip install --upgrade \ rtyaml "email_validator>=1.0.0" "exclusiveprocess" \ flask dnspython python-dateutil expiringdict \ qrcode[pil] pyotp \