diff options
| author | Chris McDonough <chrism@plope.com> | 2015-07-29 11:03:49 -0400 |
|---|---|---|
| committer | Chris McDonough <chrism@plope.com> | 2015-07-29 11:03:49 -0400 |
| commit | 2ad426fdb01b445a52aebcbc879dced9ef7ba6bc (patch) | |
| tree | 8a23c23faec496b81df0517237d7ed8d77e03b59 /docs | |
| parent | acef960041ed25aa335feafacc7061ffd6d58b5e (diff) | |
| download | pyramid-2ad426fdb01b445a52aebcbc879dced9ef7ba6bc.tar.gz pyramid-2ad426fdb01b445a52aebcbc879dced9ef7ba6bc.tar.bz2 pyramid-2ad426fdb01b445a52aebcbc879dced9ef7ba6bc.zip | |
Add a bandaid; provide correct rationale of using easy_install over pip, for now
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/quick_tour.rst | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/docs/quick_tour.rst b/docs/quick_tour.rst index 0fc3a7ab8..be5be2e36 100644 --- a/docs/quick_tour.rst +++ b/docs/quick_tour.rst @@ -43,10 +43,14 @@ production support for Python 3 in October 2011). .. note:: - Why ``easy_install`` and not ``pip``? Pyramid encourages use of namespace - packages which, until recently, ``pip`` didn't permit. Also Pyramid has - some optional C extensions for performance. With ``easy_install``, Windows - users can get these extensions without needing a C compiler. + Why ``easy_install`` and not ``pip``? Some distributions on which Pyramid + depends upon have optional C extensions for performance. ``pip`` cannot + install some binary Python distributions. With ``easy_install``, Windows + users are able to obtain binary Python distributions, so they get the + benefit of the C extensions without needing a C compiler. Also, there can + be issues when ``pip`` and ``easy_install`` are used side-by-side in the + same environment, so we chose to recommend ``easy_install`` for the sake of + reducing the complexity of these instructions. .. seealso:: See also: :ref:`Quick Tutorial section on Requirements <qtut_requirements>`, |
