Ticket #17578: patch_17578.diff

File patch_17578.diff, 1.1 KB (added by Zbigniew Siciarz, 12 years ago)

Note about PATH modification on Windows.

  • docs/topics/install.txt

    diff --git a/docs/topics/install.txt b/docs/topics/install.txt
    index 68db820..ed6fdb1 100644
    a b probably already have it installed.  
    2424
    2525.. _jython: http://jython.org/
    2626
     27.. admonition:: Python on Windows
     28
     29    On Windows, you might need to adjust your ``PATH`` environment variable
     30    to include paths to Python executable and additional scripts. For example,
     31    if your Python is installed in ``C:\Python27\``, the following paths need
     32    to be added to ``PATH``::
     33
     34        C:\Python27\;C:\Python27\Scripts;
     35
    2736Install Apache and mod_wsgi
    2837=============================
    2938
    Installing an official release  
    2102194. If you're using Linux, Mac OS X or some other flavor of Unix, enter
    211220   the command ``sudo python setup.py install`` at the shell prompt.
    212221   If you're using Windows, start up a command shell with administrator
    213    privileges and run the command ``setup.py install``.
     222   privileges and run the command ``python setup.py install``.
    214223
    215224These commands will install Django in your Python installation's
    216225``site-packages`` directory.
Back to Top