Django

Code

Ticket #4538: installing.2.diff

File installing.2.diff, 1.8 kB (added by Paul Bx <pb@e-scribe.com>, 1 year ago)

ignore previous patch, it includes an unrelated change

  • install.txt

    old new  
    105105======================= 
    106106 
    107107Installation instructions are slightly different depending on whether you're 
    108 using the latest official version or the latest development version. 
     108installing a distribution-specific package, downloading the the latest official 
     109release, or fetching the latest development version. 
    109110 
    110 It's easy either way. 
     111Installing a distribution-specific package 
     112~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 
    111113 
     114Check the `distribution specific notes`_ to see if your 
     115platform/distribution provides official Django packages/installers. 
     116Distribution-provided packages will typically allow for automatic 
     117installation of dependancies and easy upgrade paths. 
     118 
    112119Installing the official version 
    113120~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 
    114121 
    115     1. Check the `distribution specific notes`_ to see if your 
    116        platform/distribution provides official Django packages/installers. 
    117        Distribution-provided packages will typically allow for automatic 
    118        installation of dependancies and easy upgrade paths. 
     122    1. Download the latest release from our `download page`_. 
    119123 
    120     2. Download the latest release from our `download page`_
     124    2. Untar the downloaded file (e.g. ``tar xzvf Django-NNN.tar.gz``)
    121125 
    122     3. Untar the downloaded file (e.g. ``tar xzvf Django-NNN.tar.gz``). 
     126    3. Change into the downloaded directory (e.g. ``cd Django-NNN``). 
    123127 
    124     4. Change into the downloaded directory (e.g. ``cd Django-NNN``)
     128    4. Run ``sudo python setup.py install``
    125129 
    126     5. Run ``sudo python setup.py install``. 
    127  
    128130The command will install Django in your Python installation's ``site-packages`` 
    129131directory. 
    130132