summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorkusut <tinokusut@gmail.com>2013-08-12 21:09:36 +0700
committerkusut <tinokusut@gmail.com>2013-08-12 21:09:36 +0700
commitb853e5c9c0b19e6c6349d65dca52d6c3fe249358 (patch)
treeb2e3c1a3c49f6fedfbad7ab887cda690c8c4f74e /docs
parentae901436a61563968cc31cc636f1fbeb5e85b528 (diff)
downloadpyramid-b853e5c9c0b19e6c6349d65dca52d6c3fe249358.tar.gz
pyramid-b853e5c9c0b19e6c6349d65dca52d6c3fe249358.tar.bz2
pyramid-b853e5c9c0b19e6c6349d65dca52d6c3fe249358.zip
use easy_install instead of pip in quick_tour guide.
- consistent with another docs (pyramid/substanced uses easy_install). - prevent pip/easy_install namespace package fiasco since the docs uses setup.py develop instead of pip install -e
Diffstat (limited to 'docs')
-rw-r--r--docs/quick_tour.rst8
1 files changed, 3 insertions, 5 deletions
diff --git a/docs/quick_tour.rst b/docs/quick_tour.rst
index cc4afe67d..fcf799c6d 100644
--- a/docs/quick_tour.rst
+++ b/docs/quick_tour.rst
@@ -26,11 +26,9 @@ area in place. For Python 3.3:
$ pyvenv-3.3 env33
$ source env33/bin/activate
$ wget https://bitbucket.org/pypa/setuptools/raw/bootstrap/ez_setup.py -O - | python
- $ easy_install-3.3 pip
We make a :term:`virtualenv` then activate it. We then get Python
-packaging tools installed so we can use the popular ``pip`` tool for
-installing packages. Normal first steps for any Python project.
+packaging tools installed.
Pyramid Installation
====================
@@ -40,7 +38,7 @@ installed is easy:
.. code-block:: bash
- $ pip install pyramid
+ $ easy_install pyramid
Our virtual environment now has the Pyramid software available to its
Python.
@@ -245,7 +243,7 @@ our Pyramid applications:
.. code-block:: bash
- $ pip install pyramid_jinja2
+ $ easy_install pyramid_jinja2
With the package installed, we can include the template bindings into
our configuration: