Changeset 5096
- Timestamp:
- 04/26/07 09:58:18 (1 year ago)
- Files:
-
- django/trunk/docs/install.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
django/trunk/docs/install.txt
r5085 r5096 46 46 47 47 If 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_.48 make sure a database server is running. Django works with PostgreSQL_, 49 MySQL_ and SQLite_. 50 50 51 51 Additionally, you'll need to make sure your Python database bindings are 52 52 installed. 53 53 54 * If you're using PostgreSQL, you'll need the psycopg_ package (version 2 is55 recommended with ``postgresql_psycopg2`` backend, version 1.1 works also56 with the ``postgresql`` backend).57 54 * If you're using PostgreSQL, you'll need the psycopg_ package. Django supports 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 58 58 If you're on Windows, check out the unofficial `compiled Windows version`_. 59 59
