@@ -54,10 +54,10 @@ installed by pip or your package manager.
5454 ....................................................
5555 ....................................................
5656 ...............................done.
57- virtualenvwrapper.user_scripts Creating /Users/dhellmann /Envs/env1/bin/predeactivate
58- virtualenvwrapper.user_scripts Creating /Users/dhellmann /Envs/env1/bin/postdeactivate
59- virtualenvwrapper.user_scripts Creating /Users/dhellmann /Envs/env1/bin/preactivate
60- virtualenvwrapper.user_scripts Creating /Users/dhellmann /Envs/env1/bin/postactivate New python executable in env1/bin/python
57+ virtualenvwrapper.user_scripts Creating /Users/username /Envs/env1/bin/predeactivate
58+ virtualenvwrapper.user_scripts Creating /Users/username /Envs/env1/bin/postdeactivate
59+ virtualenvwrapper.user_scripts Creating /Users/username /Envs/env1/bin/preactivate
60+ virtualenvwrapper.user_scripts Creating /Users/username /Envs/env1/bin/postactivate New python executable in env1/bin/python
6161 (env1)$ ls $WORKON_HOME
6262 env1 hook.log
6363
@@ -72,7 +72,7 @@ Now we can install some software into the environment.
7272 Installing collected packages: django
7373 Running setup.py install for django
7474 changing mode of build/scripts-2.6/django-admin.py from 644 to 755
75- changing mode of /Users/dhellmann /Envs/env1/bin/django-admin.py to 755
75+ changing mode of /Users/username /Envs/env1/bin/django-admin.py to 755
7676 Successfully installed django
7777
7878We can see the new package with ``lssitepackages ``::
@@ -91,18 +91,18 @@ Of course we are not limited to a single virtualenv::
9191 ....................................................
9292 ....................................................
9393 ........... ...............................done.
94- virtualenvwrapper.user_scripts Creating /Users/dhellmann /Envs/env2/bin/predeactivate
95- virtualenvwrapper.user_scripts Creating /Users/dhellmann /Envs/env2/bin/postdeactivate
96- virtualenvwrapper.user_scripts Creating /Users/dhellmann /Envs/env2/bin/preactivate
97- virtualenvwrapper.user_scripts Creating /Users/dhellmann /Envs/env2/bin/postactivate New python executable in env2/bin/python
94+ virtualenvwrapper.user_scripts Creating /Users/username /Envs/env2/bin/predeactivate
95+ virtualenvwrapper.user_scripts Creating /Users/username /Envs/env2/bin/postdeactivate
96+ virtualenvwrapper.user_scripts Creating /Users/username /Envs/env2/bin/preactivate
97+ virtualenvwrapper.user_scripts Creating /Users/username /Envs/env2/bin/postactivate New python executable in env2/bin/python
9898 (env2)$ ls $WORKON_HOME
9999 env1 env2 hook.log
100100
101101Switch between environments with ``workon ``::
102102
103103 (env2)$ workon env1
104104 (env1)$ echo $VIRTUAL_ENV
105- /Users/dhellmann /Envs/env1
105+ /Users/username /Envs/env1
106106 (env1)$
107107
108108The ``workon `` command also includes tab completion for the
@@ -114,7 +114,7 @@ is activated or deactivated (see :ref:`scripts`).
114114 (env1)$ echo 'cd $VIRTUAL_ENV' >> $WORKON_HOME/postactivate
115115 (env1)$ workon env2
116116 (env2)$ pwd
117- /Users/dhellmann /Envs/env2
117+ /Users/username /Envs/env2
118118
119119:ref: `scripts-postmkvirtualenv ` is run when a new environment is
120120created, letting you automatically install commonly-used tools.
@@ -128,10 +128,10 @@ created, letting you automatically install commonly-used tools.
128128 ....................................................
129129 ....................................................
130130 ........... ...............................done.
131- virtualenvwrapper.user_scripts Creating /Users/dhellmann /Envs/env3/bin/predeactivate
132- virtualenvwrapper.user_scripts Creating /Users/dhellmann /Envs/env3/bin/postdeactivate
133- virtualenvwrapper.user_scripts Creating /Users/dhellmann /Envs/env3/bin/preactivate
134- virtualenvwrapper.user_scripts Creating /Users/dhellmann /Envs/env3/bin/postactivate
131+ virtualenvwrapper.user_scripts Creating /Users/username /Envs/env3/bin/predeactivate
132+ virtualenvwrapper.user_scripts Creating /Users/username /Envs/env3/bin/postdeactivate
133+ virtualenvwrapper.user_scripts Creating /Users/username /Envs/env3/bin/preactivate
134+ virtualenvwrapper.user_scripts Creating /Users/username /Envs/env3/bin/postactivate
135135 Downloading/unpacking sphinx
136136 Downloading Sphinx-0.6.5.tar.gz (972Kb): 972Kb downloaded
137137 Running setup.py egg_info for package sphinx
@@ -152,12 +152,12 @@ created, letting you automatically install commonly-used tools.
152152 Running setup.py install for Pygments
153153 Running setup.py install for sphinx
154154 no previously-included directories found matching 'doc/_build'
155- Installing sphinx-build script to /Users/dhellmann /Envs/env3/bin
156- Installing sphinx-quickstart script to /Users/dhellmann /Envs/env3/bin
157- Installing sphinx-autogen script to /Users/dhellmann /Envs/env3/bin
155+ Installing sphinx-build script to /Users/username /Envs/env3/bin
156+ Installing sphinx-quickstart script to /Users/username /Envs/env3/bin
157+ Installing sphinx-autogen script to /Users/username /Envs/env3/bin
158158 Successfully installed docutils Jinja2 Pygments sphinx (env3)$
159159 (venv3)$ which sphinx-build
160- /Users/dhellmann /Envs/env3/bin/sphinx-build
160+ /Users/username /Envs/env3/bin/sphinx-build
161161
162162Through a combination of the existing functions defined by the core
163163package (see :ref: `command `), third-party plugins (see
0 commit comments