Ticket #5777: 5777.diff

File 5777.diff, 1.3 KB (added by arien <regexbot@…>, 17 years ago)
  • docs/install.txt

     
    204204
    205205      .. _How to use Django with mod_python: ../modpython/
    206206
    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.
     2074. 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::
    212210
     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
    213220You *don't* have to run ``python setup.py install``, because you've already
    214221carried out the equivalent actions in steps 3 and 4.
    215222
Back to Top