1
0
Fork 0
mirror of https://github.com/ohmyzsh/ohmyzsh.git synced 2024-09-21 07:20:09 +00:00

feat(pip): alias pip to pip3 if pip is missing (#10431)

This commit is contained in:
Carlo Sala 2021-12-28 14:36:32 +01:00 committed by GitHub
parent 49bae43f62
commit 79531f7013
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -82,7 +82,11 @@ zsh-pip-test-clean-packages() {
fi
}
alias pip="noglob pip" # allows square brackets for pip command invocation
if (( $+commands[pip3] && !$+commands[pip] )); then
alias pip="noglob pip3"
else
alias pip="noglob pip"
fi
# Create requirements file
alias pipreq="pip freeze > requirements.txt"