@@ -54,10 +54,10 @@ installed by pip or your package manager.
54
54
....................................................
55
55
....................................................
56
56
...............................done.
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
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
61
61
(env1)$ ls $WORKON_HOME
62
62
env1 hook.log
63
63
@@ -72,7 +72,7 @@ Now we can install some software into the environment.
72
72
Installing collected packages: django
73
73
Running setup.py install for django
74
74
changing mode of build/scripts-2.6/django-admin.py from 644 to 755
75
- changing mode of /Users/username /Envs/env1/bin/django-admin.py to 755
75
+ changing mode of /Users/dhellmann /Envs/env1/bin/django-admin.py to 755
76
76
Successfully installed django
77
77
78
78
We can see the new package with ``lssitepackages ``::
@@ -91,18 +91,18 @@ Of course we are not limited to a single virtualenv::
91
91
....................................................
92
92
....................................................
93
93
........... ...............................done.
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
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
98
98
(env2)$ ls $WORKON_HOME
99
99
env1 env2 hook.log
100
100
101
101
Switch between environments with ``workon ``::
102
102
103
103
(env2)$ workon env1
104
104
(env1)$ echo $VIRTUAL_ENV
105
- /Users/username /Envs/env1
105
+ /Users/dhellmann /Envs/env1
106
106
(env1)$
107
107
108
108
The ``workon `` command also includes tab completion for the
@@ -114,7 +114,7 @@ is activated or deactivated (see :ref:`scripts`).
114
114
(env1)$ echo 'cd $VIRTUAL_ENV' >> $WORKON_HOME/postactivate
115
115
(env1)$ workon env2
116
116
(env2)$ pwd
117
- /Users/username /Envs/env2
117
+ /Users/dhellmann /Envs/env2
118
118
119
119
:ref: `scripts-postmkvirtualenv ` is run when a new environment is
120
120
created, letting you automatically install commonly-used tools.
@@ -128,10 +128,10 @@ created, letting you automatically install commonly-used tools.
128
128
....................................................
129
129
....................................................
130
130
........... ...............................done.
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
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
135
135
Downloading/unpacking sphinx
136
136
Downloading Sphinx-0.6.5.tar.gz (972Kb): 972Kb downloaded
137
137
Running setup.py egg_info for package sphinx
@@ -152,12 +152,12 @@ created, letting you automatically install commonly-used tools.
152
152
Running setup.py install for Pygments
153
153
Running setup.py install for sphinx
154
154
no previously-included directories found matching 'doc/_build'
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
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
158
158
Successfully installed docutils Jinja2 Pygments sphinx (env3)$
159
159
(venv3)$ which sphinx-build
160
- /Users/username /Envs/env3/bin/sphinx-build
160
+ /Users/dhellmann /Envs/env3/bin/sphinx-build
161
161
162
162
Through a combination of the existing functions defined by the core
163
163
package (see :ref: `command `), third-party plugins (see
0 commit comments