my xfce4 dotfiles
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

28 lines
913 B

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