mirror of
https://github.com/pyenv/pyenv-virtualenv.git
synced 2025-11-08 11:33:55 -05:00
README: fix and distinguish syntax highlighting in Bash vs Fish snippets (#489)
Co-authored-by: native-api <vano@mail.mipt.ru>
This commit is contained in:
10
README.md
10
README.md
@@ -30,25 +30,25 @@ From inside that directory you can:
|
|||||||
|
|
||||||
1. **Check out pyenv-virtualenv into plugin directory**
|
1. **Check out pyenv-virtualenv into plugin directory**
|
||||||
|
|
||||||
```sh
|
```bash
|
||||||
git clone https://github.com/pyenv/pyenv-virtualenv.git $(pyenv root)/plugins/pyenv-virtualenv
|
git clone https://github.com/pyenv/pyenv-virtualenv.git $(pyenv root)/plugins/pyenv-virtualenv
|
||||||
```
|
```
|
||||||
|
|
||||||
For the Fish shell:
|
For the Fish shell:
|
||||||
|
|
||||||
```sh
|
```fish
|
||||||
git clone https://github.com/pyenv/pyenv-virtualenv.git (pyenv root)/plugins/pyenv-virtualenv
|
git clone https://github.com/pyenv/pyenv-virtualenv.git (pyenv root)/plugins/pyenv-virtualenv
|
||||||
```
|
```
|
||||||
|
|
||||||
2. (OPTIONAL) **Add `pyenv virtualenv-init` to your shell** to enable auto-activation of virtualenvs. This is entirely optional but pretty useful. See "Activate virtualenv" below.
|
2. (OPTIONAL) **Add `pyenv virtualenv-init` to your shell** to enable auto-activation of virtualenvs. This is entirely optional but pretty useful. See "Activate virtualenv" below.
|
||||||
|
|
||||||
```sh
|
```bash
|
||||||
echo 'eval "$(pyenv virtualenv-init -)"' >> ~/.bashrc
|
echo 'eval "$(pyenv virtualenv-init -)"' >> ~/.bashrc
|
||||||
```
|
```
|
||||||
|
|
||||||
**Fish shell note**: Add this to your `~/.config/fish/config.fish`
|
**Fish shell note**: Add this to your `~/.config/fish/config.fish`
|
||||||
|
|
||||||
```sh
|
```fish
|
||||||
status --is-interactive; and pyenv virtualenv-init - | source
|
status --is-interactive; and pyenv virtualenv-init - | source
|
||||||
```
|
```
|
||||||
|
|
||||||
@@ -56,7 +56,7 @@ From inside that directory you can:
|
|||||||
|
|
||||||
3. **Restart your shell to enable pyenv-virtualenv**
|
3. **Restart your shell to enable pyenv-virtualenv**
|
||||||
|
|
||||||
```sh
|
```bash
|
||||||
exec "$SHELL"
|
exec "$SHELL"
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user