mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2026-03-28 18:53:47 +08:00
Merge 048196a8ad into 76ffd9e22a
This commit is contained in:
commit
d2c610142e
13
plugins/pipx/README.md
Normal file
13
plugins/pipx/README.md
Normal 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/)
|
||||
6
plugins/pipx/pipx.plugin.zsh
Normal file
6
plugins/pipx/pipx.plugin.zsh
Normal file
@ -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
Block a user