Django

Code

Changeset 5096

Show
Ignore:
Timestamp:
04/26/07 09:58:18 (1 year ago)
Author:
adrian
Message:

Edited docs/install.txt changes from [5085]

Files:

Legend:

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

    r5085 r5096  
    4646 
    4747If you plan to use Django's database API functionality, you'll need to 
    48 make sure a database server is running. Django works with PostgreSQL_ 
    49 (recommended), MySQL_ and SQLite_. 
     48make sure a database server is running. Django works with PostgreSQL_, 
     49MySQL_ and SQLite_. 
    5050 
    5151Additionally, you'll need to make sure your Python database bindings are 
    5252installed. 
    5353 
    54 * If you're using PostgreSQL, you'll need the psycopg_ package (version 2 i
    55   recommended with ``postgresql_psycopg2`` backend, version 1.1 works also 
    56   with the ``postgresql`` backend). 
    57    
     54* If you're using PostgreSQL, you'll need the psycopg_ package. Django support
     55  both version 1 and 2. (When you configure Django's database layer, specify 
     56  either ``postgresql`` [for version 1] or ``postgresql_psycopg2`` [for version 2].) 
     57 
    5858  If you're on Windows, check out the unofficial `compiled Windows version`_. 
    5959