@@ -31,19 +31,19 @@ From inside that directory you can:
31
31
1 . ** Check out pyenv-virtualenv into plugin directory**
32
32
33
33
``` sh
34
- $ git clone https://github.com/pyenv/pyenv-virtualenv.git $( pyenv root) /plugins/pyenv-virtualenv
34
+ git clone https://github.com/pyenv/pyenv-virtualenv.git $( pyenv root) /plugins/pyenv-virtualenv
35
35
```
36
36
37
37
For the Fish shell:
38
38
39
39
` ` ` sh
40
- $ git clone https://github.com/pyenv/pyenv-virtualenv.git (pyenv root)/plugins/pyenv-virtualenv
40
+ git clone https://github.com/pyenv/pyenv-virtualenv.git (pyenv root)/plugins/pyenv-virtualenv
41
41
` ` `
42
42
43
43
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.
44
44
45
45
` ` ` sh
46
- $ echo ' eval "$(pyenv virtualenv-init -)"' >> ~ /.bashrc
46
+ echo ' eval "$(pyenv virtualenv-init -)"' >> ~ /.bashrc
47
47
` ` `
48
48
49
49
** Fish shell note** : Add this to your ` ~/.config/fish/config.fish`
@@ -57,7 +57,7 @@ From inside that directory you can:
57
57
3. ** Restart your shell to enable pyenv-virtualenv**
58
58
59
59
` ` ` sh
60
- $ exec " $SHELL "
60
+ exec " $SHELL "
61
61
` ` `
62
62
63
63
@@ -72,13 +72,13 @@ installed, you will also be able to use the `pyenv virtualenv` command.
72
72
with Homebrew.*
73
73
74
74
` ` ` sh
75
- $ brew install pyenv-virtualenv
75
+ brew install pyenv-virtualenv
76
76
` ` `
77
77
78
78
Or, if you would like to install the latest development release:
79
79
80
80
` ` ` sh
81
- $ brew install --HEAD pyenv-virtualenv
81
+ brew install --HEAD pyenv-virtualenv
82
82
` ` `
83
83
84
84
After installation, you' ll still need to do
@@ -99,7 +99,7 @@ To create a virtualenv for the Python version used with pyenv, run
99
99
of the virtualenv directory. For example,
100
100
101
101
```sh
102
- $ pyenv virtualenv 2.7.10 my-virtual-env-2.7.10
102
+ pyenv virtualenv 2.7.10 my-virtual-env-2.7.10
103
103
```
104
104
105
105
will create a virtualenv based on Python 2.7.10 under `$(pyenv root)/versions` in a
0 commit comments