mirror of
https://github.com/notwa/rc
synced 2024-11-05 07:29:04 -08:00
20 lines
766 B
Bash
Executable file
20 lines
766 B
Bash
Executable file
#!/usr/bin/env sh
|
|
# YES_ZSH YES_BASH YES_DASH YES_ASH
|
|
|
|
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
|
|
local sudo="$(has sudo || echo maybesudo_)"
|
|
"$sudo" 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 "$@"
|