diff --git a/docs/topics/install.txt b/docs/topics/install.txt
index 68db820..ed6fdb1 100644
a
|
b
|
probably already have it installed.
|
24 | 24 | |
25 | 25 | .. _jython: http://jython.org/ |
26 | 26 | |
| 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 | |
27 | 36 | Install Apache and mod_wsgi |
28 | 37 | ============================= |
29 | 38 | |
… |
… |
Installing an official release
|
210 | 219 | 4. If you're using Linux, Mac OS X or some other flavor of Unix, enter |
211 | 220 | the command ``sudo python setup.py install`` at the shell prompt. |
212 | 221 | 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``. |
214 | 223 | |
215 | 224 | These commands will install Django in your Python installation's |
216 | 225 | ``site-packages`` directory. |