mirror of
https://github.com/notwa/rc
synced 2024-11-05 08:19:03 -08:00
19 lines
720 B
Bash
Executable file
19 lines
720 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
|
|
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 "$@"
|