mirror of https://github.com/ohmyzsh/ohmyzsh.git
Merge 048196a8ad
into d82669199b
This commit is contained in:
commit
22298ac1d4
|
@ -0,0 +1,13 @@
|
||||||
|
# pipx
|
||||||
|
|
||||||
|
[`pipx`](https://pipxproject.github.io/pipx/) - Install and Run Python Applications in Isolated Environments
|
||||||
|
|
||||||
|
To use it, add `pipx` to the plugins array in your zshrc file:
|
||||||
|
|
||||||
|
```zsh
|
||||||
|
plugins=(... pipx)
|
||||||
|
```
|
||||||
|
|
||||||
|
## Installation
|
||||||
|
|
||||||
|
Please find detailed installation guide [`here`](https://pipxproject.github.io/pipx/installation/)
|
|
@ -0,0 +1,6 @@
|
||||||
|
# check if pipx is installed
|
||||||
|
if (( ! ${+commands[pipx]} )); then
|
||||||
|
return
|
||||||
|
fi
|
||||||
|
|
||||||
|
eval "$(register-python-argcomplete pipx)"
|
Loading…
Reference in New Issue