summaryrefslogtreecommitdiff
path: root/docs/quick_tutorial/python_setup.rst
diff options
context:
space:
mode:
authorTshepang Lekhonkhobe <tshepang@gmail.com>2013-09-16 02:14:53 +0200
committerTshepang Lekhonkhobe <tshepang@gmail.com>2013-09-16 02:14:53 +0200
commitb0b28ede912c817a62a84b97c332e39eda02d166 (patch)
tree7b40be0ffebbe755904781b718c3ed0e19a85103 /docs/quick_tutorial/python_setup.rst
parent6625ddd9d78b1307aaff6b9c212c2fbbe926c9c0 (diff)
downloadpyramid-b0b28ede912c817a62a84b97c332e39eda02d166.tar.gz
pyramid-b0b28ede912c817a62a84b97c332e39eda02d166.tar.bz2
pyramid-b0b28ede912c817a62a84b97c332e39eda02d166.zip
s/env/venv just for sake of consistency
Diffstat (limited to 'docs/quick_tutorial/python_setup.rst')
-rw-r--r--docs/quick_tutorial/python_setup.rst8
1 files changed, 4 insertions, 4 deletions
diff --git a/docs/quick_tutorial/python_setup.rst b/docs/quick_tutorial/python_setup.rst
index 5ac32dc97..bdba214b9 100644
--- a/docs/quick_tutorial/python_setup.rst
+++ b/docs/quick_tutorial/python_setup.rst
@@ -14,9 +14,9 @@ area in place. For Python 3.3:
.. code-block:: bash
- $ pyvenv-3.3 env33
- $ source env33/bin/activate
- $ wget https://bitbucket.org/pypa/setuptools/raw/bootstrap/ez_setup.py -O - | python
+ $ pyvenv-3.3 venv
+ $ source env/bin/activate
+ (venv)$ wget https://bitbucket.org/pypa/setuptools/raw/bootstrap/ez_setup.py -O - | python
If ``wget`` complains with a certificate error, run it with:
@@ -26,7 +26,7 @@ If ``wget`` complains with a certificate error, run it with:
In these steps above we first made a :term:`virtualenv` and then
"activated" it, which adjusted our path to look first in
-``env33/bin`` for commands (such as ``python``). We next downloaded
+``venv/bin`` for commands (such as ``python``). We next downloaded
Python's packaging support and installed it, giving us the
``easy_install`` command-line script for adding new packages. Python
2.7 users will need to use ``virtualenv`` instead of ``pyvenv`` to make