summaryrefslogtreecommitdiff
path: root/docs/tutorials/wiki2
diff options
context:
space:
mode:
authorChris McDonough <chrism@plope.com>2013-08-16 11:00:49 +0200
committerChris McDonough <chrism@plope.com>2013-08-16 11:00:49 +0200
commit89fca7739329795fc68915511231c47154084fe7 (patch)
tree13469ba21eb0ed5cd72d4ef00b045bee543eef23 /docs/tutorials/wiki2
parent826a45b9fc6c807ad5606055194647d55497ab99 (diff)
parentb189a3ed0f44544687e68d0287417c42cd0fdca3 (diff)
downloadpyramid-89fca7739329795fc68915511231c47154084fe7.tar.gz
pyramid-89fca7739329795fc68915511231c47154084fe7.tar.bz2
pyramid-89fca7739329795fc68915511231c47154084fe7.zip
Merge branch 'master' of github.com:stevepiercy/pyramid into stevepiercy-master
Diffstat (limited to 'docs/tutorials/wiki2')
-rw-r--r--docs/tutorials/wiki2/installation.rst6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/tutorials/wiki2/installation.rst b/docs/tutorials/wiki2/installation.rst
index 17788cdde..e21bf7108 100644
--- a/docs/tutorials/wiki2/installation.rst
+++ b/docs/tutorials/wiki2/installation.rst
@@ -26,7 +26,7 @@ On UNIX
.. code-block:: text
$ export VENV=~/pyramidtut
- $ virtualenv --no-site-packages $VENV
+ $ virtualenv $VENV
New python executable in /home/foo/env/bin/python
Installing setuptools.............done.
@@ -46,13 +46,13 @@ Python 2.7:
.. code-block:: text
- c:\> c:\Python27\Scripts\virtualenv --no-site-packages %VENV%
+ c:\> c:\Python27\Scripts\virtualenv %VENV%
Python 3.2:
.. code-block:: text
- c:\> c:\Python32\Scripts\virtualenv --no-site-packages %VENV%
+ c:\> c:\Python32\Scripts\virtualenv %VENV%
Install Pyramid Into the Virtual Python Environment
---------------------------------------------------