summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdrian Holovaty <adrian@holovaty.com>2005-07-15 22:43:30 +0000
committerAdrian Holovaty <adrian@holovaty.com>2005-07-15 22:43:30 +0000
commit3eaa0cf1263a67291e04c2362b64bf725f38d0bb (patch)
treedcfaa12570284f96ed9830570e08272aafd963be
parent03f72b629d09c962a9b0056cdf9940fb4382ced6 (diff)
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
-rw-r--r--docs/install.txt6
1 files changed, 6 insertions, 0 deletions
diff --git a/docs/install.txt b/docs/install.txt
index 269c4b2528..c7a4193a0b 100644
--- a/docs/install.txt
+++ b/docs/install.txt
@@ -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_
(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/
.. _MySQL: http://www.mysql.com/
+.. _psycopg: http://initd.org/projects/psycopg1
+.. _MySQLdb_: http://sourceforge.net/projects/mysql-python
Install the Django code
=======================