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: docsource/index.rst
+12-8Lines changed: 12 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -22,18 +22,22 @@ Features
22
22
Quick Setup
23
23
===========
24
24
25
-
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::
25
+
1. Create a directory to hold all of the virtual environments. The default is
26
+
``$HOME/.virtualenvs``.
27
+
28
+
2. Add two lines to your .bashrc to set the location where the virtual environments should
29
+
live and the location of the script installed with this package::
26
30
27
31
export WORKON_HOME=$HOME/.virtualenvs
28
32
source /usr/local/bin/virtualenvwrapper_bashrc
29
33
30
-
2. Run: ``source ~/.bashrc``
31
-
3. Run: ``workon``
32
-
4. A list of environments, empty, is printed.
33
-
5. Run: ``mkvirtualenv temp``
34
-
6. A new environment, ``temp`` is created and activated.
35
-
7. Run: ``workon``
36
-
8. This time, the ``temp`` environment is included.
34
+
3. Run: ``source ~/.bashrc``
35
+
4. Run: ``workon``
36
+
5. A list of environments, empty, is printed.
37
+
6. Run: ``mkvirtualenv temp``
38
+
7. A new environment, ``temp`` is created and activated.
39
+
8. Run: ``workon``
40
+
9. This time, the ``temp`` environment is included.
0 commit comments