Changed docs/install to point out that you need Python DB bindings

git-svn-id: http://code.djangoproject.com/svn/django/trunk@84 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Adrian Holovaty 2005-07-15 22:43:30 +00:00
parent 03f72b629d
commit 3eaa0cf126
1 changed files with 6 additions and 0 deletions

View File

@ -23,8 +23,14 @@ If you plan to use Django's database API functionality, you'll need to
make sure a database server is running. Django works with PostgreSQL_ make sure a database server is running. Django works with PostgreSQL_
(recommended) or MySQL_. (recommended) or MySQL_.
Additionally, you'll need to make sure your Python database bindings are
installed. If you're using PostgreSQL, you'll need the psycopg_
package. If you're using MySQL, you'll need MySQLdb_.
.. _PostgreSQL: http://www.postgresql.org/ .. _PostgreSQL: http://www.postgresql.org/
.. _MySQL: http://www.mysql.com/ .. _MySQL: http://www.mysql.com/
.. _psycopg: http://initd.org/projects/psycopg1
.. _MySQLdb_: http://sourceforge.net/projects/mysql-python
Install the Django code Install the Django code
======================= =======================