]> src.twobees.de Git - dotfiles.git/blob - stow/oh-my-zsh/.oh-my-zsh/plugins/pyenv/README.md
...
[dotfiles.git] / stow / oh-my-zsh / .oh-my-zsh / plugins / pyenv / README.md
1 # pyenv
2
3 This plugin looks for [pyenv](https://github.com/pyenv/pyenv), a Simple Python version
4 management system, and loads it if it's found. It also loads pyenv-virtualenv, a pyenv
5 plugin to manage virtualenv, if it's found.
6
7 To use it, add `pyenv` to the plugins array in your zshrc file:
8
9 ```zsh
10 plugins=(... pyenv)
11 ```
12
13 ## Settings
14
15 - `ZSH_PYENV_QUIET`: if set to `true`, the plugin will not print any messages if it
16   finds that `pyenv` is not properly configured.
17
18 - `ZSH_PYENV_VIRTUALENV`: if set to `false`, the plugin will not load pyenv-virtualenv
19   when it finds it.
20
21 ## Functions
22
23 - `pyenv_prompt_info`: displays the Python version in use by pyenv; or the global Python
24   version, if pyenv wasn't found.