mirror of
https://github.com/notwa/rc
synced 2024-11-05 04:19:03 -08:00
15 lines
416 B
Bash
15 lines
416 B
Bash
#!/usr/bin/env sh
|
|
# YES_ZSH
|
|
|
|
#. ~/sh/maybesudo
|
|
#. ~/sh/has
|
|
|
|
pippy() { ### @-
|
|
### install Python packages using pip,
|
|
### but only update their dependencies as required.
|
|
### this uses [`maybesudo`](#maybesudo_-shmaybesudo) internally.
|
|
local sudo="$(has sudo || echo maybesudo_)"
|
|
"$sudo" py -m pip install --upgrade --upgrade-strategy only-if-needed "$@"
|
|
}
|
|
|
|
[ "${SOURCING:-0}" -gt 0 ] || pippy "$@"
|