From e8a9489cc8d4e90d6bae1809c3f7aafaf9b185f7 Mon Sep 17 00:00:00 2001 From: Guillaume Pellerin Date: Tue, 9 Feb 2021 11:41:57 +0100 Subject: [PATCH] force pip3 --- build/local/setup_lib.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build/local/setup_lib.sh b/build/local/setup_lib.sh index c037a26..de62e56 100755 --- a/build/local/setup_lib.sh +++ b/build/local/setup_lib.sh @@ -7,8 +7,8 @@ set -e for module in `ls /srv/lib/`; do cd /srv/lib/$module if [ -f 'requirements.txt' ]; then - pip install -r requirements.txt + pip3 install -r requirements.txt elif [ -f 'setup.py' ]; then - pip install -e . + pip3 install -e . fi done -- 2.39.5