summaryrefslogtreecommitdiff
path: root/docs/tutorials/modwsgi
diff options
context:
space:
mode:
authorChris McDonough <chrism@plope.com>2013-03-13 15:13:37 -0700
committerChris McDonough <chrism@plope.com>2013-03-13 15:13:37 -0700
commit13e241b21770a2471d520aa21b27e20f98aaecb3 (patch)
tree913c9bf716432b8a1cd8e0e5779196c757eea117 /docs/tutorials/modwsgi
parent6d62d124ee8ffd09459690e34aae95b43d0f2d53 (diff)
parent919643eec1a480cee442331a966a9c6c90fb0965 (diff)
downloadpyramid-13e241b21770a2471d520aa21b27e20f98aaecb3.tar.gz
pyramid-13e241b21770a2471d520aa21b27e20f98aaecb3.tar.bz2
pyramid-13e241b21770a2471d520aa21b27e20f98aaecb3.zip
Merge pull request #910 from tshepang/venv
consistency: use $VENV whenever virtualenv binaries are used
Diffstat (limited to 'docs/tutorials/modwsgi')
-rw-r--r--docs/tutorials/modwsgi/index.rst6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/tutorials/modwsgi/index.rst b/docs/tutorials/modwsgi/index.rst
index a22f12610..e0021f8db 100644
--- a/docs/tutorials/modwsgi/index.rst
+++ b/docs/tutorials/modwsgi/index.rst
@@ -53,7 +53,7 @@ specific path information for commands and files.
.. code-block:: text
$ cd ~/modwsgi/env
- $ bin/easy_install pyramid
+ $ $VENV/bin/easy_install pyramid
#. Create and install your :app:`Pyramid` application. For the purposes of
this tutorial, we'll just be using the ``pyramid_starter`` application as
@@ -63,9 +63,9 @@ specific path information for commands and files.
.. code-block:: text
$ cd ~/modwsgi/env
- $ bin/pcreate -s starter myapp
+ $ $VENV/bin/pcreate -s starter myapp
$ cd myapp
- $ ../bin/python setup.py install
+ $ $VENV/bin/python setup.py install
#. Within the virtualenv directory (``~/modwsgi/env``), create a
script named ``pyramid.wsgi``. Give it these contents: