]> src.twobees.de Git - dotfiles.git/blob - stow/oh-my-zsh/.oh-my-zsh/plugins/pip/README.md
...
[dotfiles.git] / stow / oh-my-zsh / .oh-my-zsh / plugins / pip / README.md
1 # pip plugin
2
3 This plugin adds completion for [pip](https://pip.pypa.io/en/latest/),
4 the Python package manager.
5
6 To use it, add `pip` to the plugins array in your zshrc file:
7
8 ```zsh
9 plugins=(... pip)
10 ```
11
12 ## pip cache
13
14 The pip plugin caches the names of available pip packages from the PyPI index.
15 To trigger the caching process, try to complete `pip install`,
16 or you can run `zsh-pip-cache-packages` directly.
17
18 To reset the cache, run `zsh-pip-clear-cache` and it will be rebuilt next
19 the next time you autocomplete `pip install`.
20
21 ## Aliases
22
23 | Alias    | Description                                   |
24 | :------- | :-------------------------------------------- |
25 | pipreq   | Create requirements file                      |
26 | pipir    | Install packages from `requirements.txt` file |
27 | pipupall | Update all installed packages                 |
28 | pipunall | Uninstall all installed packages              |