mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2026-05-22 04:51:12 +02:00
6 lines
121 B
Bash
6 lines
121 B
Bash
# check if pipx is installed
|
|
if (( ! ${+commands[pipx]} )); then
|
|
return
|
|
fi
|
|
|
|
eval "$(register-python-argcomplete pipx)"
|