From b853e5c9c0b19e6c6349d65dca52d6c3fe249358 Mon Sep 17 00:00:00 2001 From: kusut Date: Mon, 12 Aug 2013 21:09:36 +0700 Subject: 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 --- docs/quick_tour.rst | 8 +++----- 1 file 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: -- cgit v1.2.3