1
0
Fork 0
mirror of https://github.com/notwa/rc synced 2024-11-05 07:19:02 -08:00
rc/sh/pippy

19 lines
722 B
Bash
Executable file

#!/usr/bin/env sh
# compat: +ash +bash +dash -hush +zsh
pippy() { ### @-
### install Python packages using pip,
### but only update their dependencies as required.
### this uses [`maybesudo`](#maybesudo) internally.
if [ -s ~/work/automamba ]; then
~/work/automamba --pip install --upgrade --upgrade-strategy only-if-needed --dry-run "$@"
confirm || return
~/work/automamba --pip install --upgrade --upgrade-strategy only-if-needed "$@"
return
fi
maybesudo python3 -m pip install --upgrade --upgrade-strategy only-if-needed "$@"
}
[ -n "${preload+-}" ] || . ~/sh/preload || exit 2
eval ${preload:-preload} has maybesudo confirm
[ -n "${preload+-}" ] || pippy "$@"