mirror of
https://github.com/pyenv/pyenv.git
synced 2024-11-07 20:31:01 -05:00
Update instructions for installation in README (#1580)
Describe more clearly for different shells.
This commit is contained in:
parent
18fe640d29
commit
0f2d659732
1 changed files with 25 additions and 7 deletions
28
README.md
28
README.md
|
@ -192,12 +192,30 @@ easy to fork and contribute any changes back upstream.
|
|||
pyenv repo is cloned and add `$PYENV_ROOT/bin` to your `$PATH` for access
|
||||
to the `pyenv` command-line utility.
|
||||
|
||||
```sh
|
||||
$ echo 'export PYENV_ROOT="$HOME/.pyenv"' >> ~/.bash_profile
|
||||
- For **bash**:
|
||||
~~~ bash
|
||||
$ echo 'export PYENV_ROOT="$HOME/.pyenv' >> ~/.bash_profile
|
||||
$ echo 'export PATH="$PYENV_ROOT/bin:$PATH"' >> ~/.bash_profile
|
||||
```
|
||||
- **Zsh note**: Modify your `~/.zshrc` file instead of `~/.bash_profile`.
|
||||
- **Ubuntu and Fedora note**: Modify your `~/.bashrc` file instead of `~/.bash_profile`.
|
||||
~~~
|
||||
|
||||
- For **Ubuntu Desktop**:
|
||||
~~~ bash
|
||||
$ echo 'export PYENV_ROOT="$HOME/.pyenv"' >> ~/.bashrc
|
||||
$ echo 'export PATH="$PYENV_ROOT/bin:$PATH"' >> ~/.bashrc
|
||||
~~~
|
||||
|
||||
- For **Zsh**:
|
||||
~~~ zsh
|
||||
$ echo 'export PYENV_ROOT="$HOME/.pyenv"' >> ~/.zshrc
|
||||
$ echo 'export PATH="$PYENV_ROOT/bin:$PATH"' >> ~/.zshrc
|
||||
~~~
|
||||
|
||||
- For **Fish shell**:
|
||||
~~~ fish
|
||||
$ set -Ux PYENV_ROOT $HOME/.pyenv
|
||||
$ set -Ux fish_user_paths $PYENV_ROOT/bin $fish_user_paths
|
||||
~~~
|
||||
|
||||
- **Proxy note**: If you use a proxy, export `http_proxy` and `HTTPS_PROXY` too.
|
||||
|
||||
3. **Add `pyenv init` to your shell** to enable shims and autocompletion.
|
||||
|
|
Loading…
Reference in a new issue