diff options
| author | Paul Everitt <paul@agendaless.com> | 2013-08-13 03:44:25 -0700 |
|---|---|---|
| committer | Paul Everitt <paul@agendaless.com> | 2013-08-13 03:44:25 -0700 |
| commit | 4467834cbd33a955a90fceedd2e595453315ef32 (patch) | |
| tree | a3dbb82643096ee5f7a73486158dbe138ea85fce /docs | |
| parent | c90471defdd552b4a8c2073914cfd49e7d9f2ca0 (diff) | |
| parent | b853e5c9c0b19e6c6349d65dca52d6c3fe249358 (diff) | |
| download | pyramid-4467834cbd33a955a90fceedd2e595453315ef32.tar.gz pyramid-4467834cbd33a955a90fceedd2e595453315ef32.tar.bz2 pyramid-4467834cbd33a955a90fceedd2e595453315ef32.zip | |
Merge pull request #1076 from kusut/docs.gettingstarted.easy_install
Docs.gettingstarted.easy install
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/quick_tour.rst | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/docs/quick_tour.rst b/docs/quick_tour.rst index 4229c1f39..cb07826cf 100644 --- a/docs/quick_tour.rst +++ b/docs/quick_tour.rst @@ -28,11 +28,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. .. seealso:: See Also: Python 3's :mod:`venv module <python3:venv>`, the ``setuptools`` `installation @@ -49,7 +47,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. @@ -267,7 +265,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: |
