diff --git a/bs.sh b/bs.sh index b3f32e5..e8d72a9 100644 --- a/bs.sh +++ b/bs.sh @@ -204,13 +204,6 @@ aurinstall() { sudo -u "$name" $aurhelper -S --noconfirm "$1" >/dev/null 2>&1 } -pipinstall() { - whiptail --title "LARBS Installation" \ - --infobox "Installing the Python package \`$1\` ($n of $total). $1 $2" 9 70 - [ -x "$(command -v "pip")" ] || installpkg python-pip >/dev/null 2>&1 - yes | pip install "$1" -} - installationloop() { ([ -f "$progsfile" ] && cp "$progsfile" /tmp/progs.csv) || curl -Ls "$progsfile" | sed '/^#/d' >/tmp/progs.csv @@ -222,7 +215,6 @@ installationloop() { comment="$(echo "$comment" | sed -E "s/(^\"|\"$)//g")" case "$tag" in "A") aurinstall "$program" "$comment" ;; - "P") pipinstall "$program" "$comment" ;; # Will likely remain unused *) maininstall "$program" "$comment" ;; esac done