Django

Code

Changeset 6737

Show
Ignore:
Timestamp:
11/29/07 10:57:20 (9 months ago)
Author:
mtredinnick
Message:

Fixed #5777 -- Recommend using a symbolic link on Linux, OSX, etc for
django-admin.py so that subversion updates keep it up to date. Patch from arien.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • django/trunk/docs/install.txt

    r6559 r6737  
    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, create a symbolic link to the file 
     208   ``django-trunk/django/bin/django-admin.py`` in a directory on your system 
     209   path, such as ``/usr/local/bin``. For example:: 
     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``. 
    212219 
    213220You *don't* have to run ``python setup.py install``, because you've already