You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README
+11-8Lines changed: 11 additions & 8 deletions
Original file line number
Diff line number
Diff line change
@@ -6,15 +6,18 @@ virtualenvwrapper
6
6
Quick Setup
7
7
===========
8
8
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.
15
19
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.
0 commit comments