~ubuntu-branches/ubuntu/quantal/python-django/quantal-security

« back to all changes in this revision

Viewing changes to docs/topics/install.txt

  • Committer: Bazaar Package Importer
  • Author(s): Chris Lamb
  • Date: 2010-05-21 07:52:55 UTC
  • mfrom: (1.3.6 upstream)
  • mto: This revision was merged to the branch mainline in revision 28.
  • Revision ID: james.westby@ubuntu.com-20100521075255-ii78v1dyfmyu3uzx
Tags: upstream-1.2
ImportĀ upstreamĀ versionĀ 1.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
11
11
 
12
12
Being a Python Web framework, Django requires Python.
13
13
 
14
 
It works with any Python version from 2.3 to 2.6 (due to backwards
 
14
It works with any Python version from 2.4 to 2.6 (due to backwards
15
15
incompatibilities in Python 3.0, Django does not currently work with
16
16
Python 3.0; see :ref:`the Django FAQ <faq-install>` for more
17
17
information on supported Python versions and the 3.0 transition).
53
53
 
54
54
.. _Apache: http://httpd.apache.org/
55
55
.. _mod_wsgi: http://code.google.com/p/modwsgi/
56
 
.. _WSGI: http://www.python.org/peps/pep-0333.html
 
56
.. _WSGI: http://www.python.org/dev/peps/pep-0333/
57
57
.. _server-arrangements wiki page: http://code.djangoproject.com/wiki/ServerArrangements
58
58
 
59
59
.. _database-installation:
93
93
  will also want to read the database-specific notes for the :ref:`MySQL
94
94
  backend <ref-databases>`.
95
95
 
96
 
* If you're using SQLite and either Python 2.3 or Python 2.4, you'll need
97
 
  pysqlite_. Use version 2.0.3 or higher. Python 2.5 ships with an SQLite
98
 
  wrapper in the standard library, so you don't need to install anything extra
99
 
  in that case. Please read the SQLite backend :ref:`notes<sqlite-notes>`.
 
96
* If you're using SQLite and Python 2.4, you'll need pysqlite_. Use version
 
97
  2.0.3 or higher. Python 2.5 ships with an SQLite wrapper in the standard
 
98
  library, so you don't need to install anything extra in that case. Please
 
99
  read the SQLite backend :ref:`notes<sqlite-notes>`.
100
100
 
101
101
* If you're using Oracle, you'll need a copy of cx_Oracle_, but please
102
102
  read the database-specific notes for the
125
125
.. _compiled Windows version: http://stickpeople.com/projects/python/win-psycopg/
126
126
.. _MySQLdb: http://sourceforge.net/projects/mysql-python
127
127
.. _SQLite: http://www.sqlite.org/
128
 
.. _pysqlite: http://pysqlite.org/
 
128
.. _pysqlite: http://trac.edgewall.org/wiki/PySqlite
129
129
.. _cx_Oracle: http://cx-oracle.sourceforge.net/
130
130
.. _Oracle: http://www.oracle.com/
131
131
.. _Sybase SQL Anywhere: http://code.google.com/p/sqlany-django/