1
0
mirror of https://github.com/ohmyzsh/ohmyzsh.git synced 2026-03-28 18:53:47 +08:00
This commit is contained in:
Cristian Magherusan-Stanciu 2026-03-26 16:05:59 -06:00 committed by GitHub
commit d2c610142e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 19 additions and 0 deletions

13
plugins/pipx/README.md Normal file
View File

@ -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/)

View File

@ -0,0 +1,6 @@
# check if pipx is installed
if (( ! ${+commands[pipx]} )); then
return
fi
eval "$(register-python-argcomplete pipx)"