Django

Code

Show
Ignore:
Timestamp:
11/06/06 15:11:49 (2 years ago)
Author:
jkocherhans
Message:

Merged to [3519]

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • django/branches/generic-auth/INSTALL

    r1910 r4024  
    11Thanks for downloading Django. 
    22 
    3 To install it, make sure you have Python 2.3 or greater installed. Then run this command: 
     3To install it, make sure you have Python 2.3 or greater installed. Then run 
     4this command from the command prompt: 
    45 
    5 python setup.py install 
     6    python setup.py install 
     7 
     8Note this requires a working Internet connection if you don't already have the 
     9Python utility "setuptools" installed. 
     10 
     11AS AN ALTERNATIVE, you can just copy the entire "django" directory to Python's 
     12site-packages directory, which is located wherever your Python installation 
     13lives. Some places you might check are: 
     14 
     15    /usr/lib/python2.4/site-packages (Unix, Python 2.4) 
     16    /usr/lib/python2.3/site-packages (Unix, Python 2.3) 
     17    C:\\PYTHON\site-packages         (Windows) 
     18 
     19This second solution does not require a working Internet connection; it 
     20bypasses "setuptools" entirely. 
    621 
    722For more detailed instructions, see docs/install.txt.