Skip to content

Commit 6924e8e

Browse files
committed
Update quick setup instructions to make them a little easier to follow and to fix a mistake in the order of some of the steps.
1 parent 8289bee commit 6924e8e

File tree

1 file changed

+11
-8
lines changed

1 file changed

+11
-8
lines changed

README

Lines changed: 11 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,18 @@ virtualenvwrapper
66
Quick Setup
77
===========
88

9-
1. Add a line like ``export WORKON_HOME=$HOME/.virtualenvs`` to your .bashrc.
10-
2. Add a line like ``source /path/to/this/file/virtualenvwrapper_bashrc`` to your .bashrc.
11-
3. Run: ``source ~/.bashrc``
12-
4. Run: ``workon``
13-
5. A list of environments, empty, is printed.
14-
6. Run: ``mkvirtualenv temp``
9+
1. Add two lines to your .bashrc to set the location where the virtual environments should live and the location of the script installed with this package::
10+
11+
export WORKON_HOME=$HOME/.virtualenvs
12+
source /usr/local/bin/virtualenvwrapper_bashrc
13+
14+
2. Run: ``source ~/.bashrc``
15+
3. Run: ``workon``
16+
4. A list of environments, empty, is printed.
17+
5. Run: ``mkvirtualenv temp``
18+
6. A new environment, ``temp`` is created and activated.
1519
7. Run: ``workon``
16-
8. A new environment, ``temp`` is created and activated.
17-
9. This time, the ``temp`` environment is included.
20+
8. This time, the ``temp`` environment is included.
1821

1922

2023
===============

0 commit comments

Comments
 (0)