diff options
Diffstat (limited to 'static/thesiah-debian.sh')
| -rwxr-xr-x | static/thesiah-debian.sh | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/static/thesiah-debian.sh b/static/thesiah-debian.sh index 9e4fd9f..5645d04 100755 --- a/static/thesiah-debian.sh +++ b/static/thesiah-debian.sh @@ -141,8 +141,9 @@ gitmakeinstall() { pipinstall() { whiptail --title "SI 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" + [ -x "$(command -v "pip")" ] || installpkg python3-pip >/dev/null 2>&1 + [ -x "$(command -v "pipx")" ] || installpkg pipx >/dev/null 2>&1 + yes | pip install "$1" || yes | pipx install "$1" } vimplugininstall() { |
