Ticket #9112: ticket_9112.diff

File ticket_9112.diff, 1.4 KB (added by Christopher Medrela, 12 years ago)

Recommending to use pip - draft.

  • docs/topics/install.txt

    diff --git a/docs/topics/install.txt b/docs/topics/install.txt
    index 68db820..621d0e1 100644
    a b platform/distribution provides official Django packages/installers.  
    193193Distribution-provided packages will typically allow for automatic installation
    194194of dependencies and easy upgrade paths.
    195195
     196
    196197.. _installing-official-release:
    197198
    198 Installing an official release
    199 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
     199Recommended way: installing an official release via pip
     200~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
     201
     2021. Make sure you have `pip`_ installed.
     203
     2042. Enter the command ``pip install django``.
     205
     206These commands will install Django in your Python installation's
     207``site-packages`` directory.
     208
     209.. _pip: http://pypi.python.org/pypi/pip
     210
     211.. _installing-official-release-old-way:
     212
     213Installing an official release by downloading
     214~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    200215
    2012161. Download the latest release from our `download page`_.
    202217
    latest bug fixes and improvements, follow these instructions:  
    260275       # Git (requires version 1.6.6 or later)
    261276       git clone https://github.com/django/django.git
    262277       # or (works with all versions)
    263        git clone git://github.com/django/django.git       
     278       git clone git://github.com/django/django.git
    264279
    265280       # Mercurial
    266281       hg clone https://bitbucket.org/django/django
Back to Top