mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2025-12-05 01:46:46 +01:00
feat(pip): add several aliases (#10647)
This commit is contained in:
parent
f4dc8c5be3
commit
cc5100d1e9
2 changed files with 33 additions and 1 deletions
|
|
@ -88,6 +88,12 @@ else
|
|||
alias pip="noglob pip"
|
||||
fi
|
||||
|
||||
alias pipi="pip install"
|
||||
alias pipu="pip install --upgrade"
|
||||
alias pipun="pip uninstall"
|
||||
alias pipgi="pip freeze | grep"
|
||||
alias piplo="pip list -o"
|
||||
|
||||
# Create requirements file
|
||||
alias pipreq="pip freeze > requirements.txt"
|
||||
|
||||
|
|
@ -102,10 +108,28 @@ function pipupall {
|
|||
pip list --outdated | awk 'NR > 2 { print $1 }' | ${=xargs} pip install --upgrade
|
||||
}
|
||||
|
||||
# Uninstalled all installed packages
|
||||
# Uninstall all installed packages
|
||||
function pipunall {
|
||||
# non-GNU xargs does not support nor need `--no-run-if-empty`
|
||||
local xargs="xargs --no-run-if-empty"
|
||||
xargs --version 2>/dev/null | grep -q GNU || xargs="xargs"
|
||||
pip list --format freeze | cut -d= -f1 | ${=xargs} pip uninstall
|
||||
}
|
||||
|
||||
# Install from GitHub repository
|
||||
function pipig {
|
||||
pip install "git+https://github.com/$1.git"
|
||||
}
|
||||
compdef _pip pipig
|
||||
|
||||
# Install from GitHub branch
|
||||
function pipigb {
|
||||
pip install "git+https://github.com/$1.git@$2"
|
||||
}
|
||||
compdef _pip pipigb
|
||||
|
||||
# Install from GitHub pull request
|
||||
function pipigp {
|
||||
pip install "git+https://github.com/$1.git@refs/pull/$2/head"
|
||||
}
|
||||
compdef _pip pipigp
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue