@@ -31,19 +31,19 @@ From inside that directory you can:
31311 . ** Check out pyenv-virtualenv into plugin directory**
3232
3333 ``` 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
3535 ```
3636
3737 For the Fish shell:
3838
3939 ` ` ` 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
4141 ` ` `
4242
43432. (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.
4444
4545 ` ` ` sh
46- $ echo ' eval "$(pyenv virtualenv-init -)"' >> ~ /.bashrc
46+ echo ' eval "$(pyenv virtualenv-init -)"' >> ~ /.bashrc
4747 ` ` `
4848
4949 ** Fish shell note** : Add this to your ` ~/.config/fish/config.fish`
@@ -57,7 +57,7 @@ From inside that directory you can:
57573. ** Restart your shell to enable pyenv-virtualenv**
5858
5959 ` ` ` sh
60- $ exec " $SHELL "
60+ exec " $SHELL "
6161 ` ` `
6262
6363
@@ -72,13 +72,13 @@ installed, you will also be able to use the `pyenv virtualenv` command.
7272 with Homebrew.*
7373
7474` ` ` sh
75- $ brew install pyenv-virtualenv
75+ brew install pyenv-virtualenv
7676` ` `
7777
7878Or, if you would like to install the latest development release:
7979
8080` ` ` sh
81- $ brew install --HEAD pyenv-virtualenv
81+ brew install --HEAD pyenv-virtualenv
8282` ` `
8383
8484After installation, you' ll still need to do
@@ -99,7 +99,7 @@ To create a virtualenv for the Python version used with pyenv, run
9999of the virtualenv directory. For example,
100100
101101```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
103103```
104104
105105will create a virtualenv based on Python 2.7.10 under `$(pyenv root)/versions` in a
0 commit comments