Ticket #5777: 5777.diff
File 5777.diff, 1.3 KB (added by , 17 years ago) |
---|
-
docs/install.txt
204 204 205 205 .. _How to use Django with mod_python: ../modpython/ 206 206 207 4. Copy the file ``django-trunk/django/bin/django-admin.py`` to somewhere on 208 your system path, such as ``/usr/local/bin`` (Unix) or ``C:\Python24\Scripts`` 209 (Windows). This step simply lets you type ``django-admin.py`` from within 210 any directory, rather than having to qualify the command with the full path 211 to the file. 207 4. On Unix-like systems like Linux or Max OSX, create a symbolic link to the 208 file ``django-trunk/django/bin/django-admin.py`` in a directory on your 209 system path, such as ``/usr/local/bin``. For example:: 212 210 211 ln -s `pwd`/django-trunk/django/bin/django-admin.py /usr/local/bin 212 213 This simply lets you type ``django-admin.py`` from within any directory, 214 rather than having to qualify the command with the full path to the file. 215 216 On Windows systems, the same result can be achieved by copying the file 217 ``django-trunk/django/bin/django-admin.py`` to somewhere on your system 218 path, for example ``C:\Python24\Scripts``. 219 213 220 You *don't* have to run ``python setup.py install``, because you've already 214 221 carried out the equivalent actions in steps 3 and 4. 215 222