From 588869aa57909e22b8741884308af514add67fcf Mon Sep 17 00:00:00 2001 From: alfrix Date: Sun, 30 Jan 2022 16:05:14 -0300 Subject: [PATCH] Don't upgrade pip in the installer (pip 22.0 is being an issue) --- scripts/KlipperScreen-install.sh | 1 - 1 file changed, 1 deletion(-) diff --git a/scripts/KlipperScreen-install.sh b/scripts/KlipperScreen-install.sh index 79560e55..77951527 100755 --- a/scripts/KlipperScreen-install.sh +++ b/scripts/KlipperScreen-install.sh @@ -58,7 +58,6 @@ create_virtualenv() [ ! -d ${KSENV} ] && virtualenv -p /usr/bin/python3 ${KSENV} source ${KSENV}/bin/activate - pip install -U pip while read requirements; do pip install $requirements if [ $? -gt 0 ]; then