@@ -27,20 +27,22 @@ Features
2727Quick Setup
2828===========
2929
30- 1. Add two lines to your .bashrc to set the location where the virtual
31- environments should live and the location of the script installed
32- with this package::
30+ 1. Create a directory to hold all of the virtual environments. The default is
31+ ``$HOME/.virtualenvs``.
3332
34- export WORKON_HOME=$HOME/.virtualenvs
35- source /usr/local/bin/virtualenvwrapper_bashrc
33+ 2. Add two lines to your .bashrc to set the location where the virtual environments should
34+ live and the location of the script installed with this package::
3635
37- 2. Run: ``source ~/.bashrc``
38- 3. Run: ``workon``
39- 4. A list of environments, empty, is printed.
40- 5. Run: ``mkvirtualenv temp``
41- 6. A new environment, ``temp`` is created and activated.
42- 7. Run: ``workon``
43- 8. This time, the ``temp`` environment is included.
36+ export WORKON_HOME=$HOME/.virtualenvs
37+ source /usr/local/bin/virtualenvwrapper_bashrc
38+
39+ 3. Run: ``source ~/.bashrc``
40+ 4. Run: ``workon``
41+ 5. A list of environments, empty, is printed.
42+ 6. Run: ``mkvirtualenv temp``
43+ 7. A new environment, ``temp`` is created and activated.
44+ 8. Run: ``workon``
45+ 9. This time, the ``temp`` environment is included.
4446
4547=======
4648License
0 commit comments