2008-08-24 06:25:40 +08:00
Quick install guide
===================
Before you can use Django, you'll need to get it installed. We have a
2010-08-20 03:27:44 +08:00
:doc:`complete installation guide </topics/install>` that covers all the
2008-08-24 06:25:40 +08:00
possibilities; this guide will guide you to a simple, minimal installation
that'll work while you walk through the introduction.
Install Python
--------------
Being a Python Web framework, Django requires Python. It works with any Python
2010-07-06 01:07:50 +08:00
version from 2.4 to 2.7 (due to backwards
2008-12-10 07:05:55 +08:00
incompatibilities in Python 3.0, Django does not currently work with
2010-08-20 03:27:44 +08:00
Python 3.0; see :doc:`the Django FAQ </faq/install>` for more
2008-12-10 07:05:55 +08:00
information on supported Python versions and the 3.0 transition), but we recommend installing Python 2.5 or later. If you do so, you won't need to set up a database just yet: Python 2.5 or later includes a lightweight database called SQLite_.
2008-08-24 06:25:40 +08:00
.. _sqlite: http://sqlite.org/
Get Python at http://www.python.org. If you're running Linux or Mac OS X, you
probably already have it installed.
2008-08-26 23:52:21 +08:00
.. admonition:: Django on Jython
If you use Jython_ (a Python implementation for the Java platform), you'll
2010-08-20 03:27:44 +08:00
need to follow a few additional steps. See :doc:`/howto/jython` for details.
2008-08-26 23:52:21 +08:00
2008-11-02 04:51:54 +08:00
.. _jython: http://www.jython.org/
2008-08-26 23:52:21 +08:00
2008-09-10 03:09:05 +08:00
You can verify that Python's installed by typing ``python`` from your shell; you should see something like::
2008-08-24 06:25:40 +08:00
2010-08-20 03:27:44 +08:00
Python 2.5.1 (r251:54863, Jan 17 2008, 19:35:17)
2008-08-24 06:25:40 +08:00
[GCC 4.0.1 (Apple Inc. build 5465)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>>
2010-08-20 03:27:44 +08:00
2008-08-24 06:25:40 +08:00
Set up a database
-----------------
If you installed Python 2.5 or later, you can skip this step for now.
If not, or if you'd like to work with a "large" database engine like PostgreSQL,
MySQL, or Oracle, consult the :ref:`database installation information
<database-installation>`.
Remove any old versions of Django
---------------------------------
If you are upgrading your installation of Django from a previous version, you
will need to :ref:`uninstall the old Django version before installing the new
version <removing-old-versions-of-django>`.
Install Django
--------------
You've got three easy options to install Django:
2010-08-20 03:27:44 +08:00
* Install a version of Django :doc:`provided by your operating system
distribution </misc/distributions>`. This is the quickest option for those
2008-08-24 06:25:40 +08:00
who have operating systems that distribute Django.
* :ref:`Install an official release <installing-official-release>`. This
is the best approach for users who want a stable version number and aren't
concerned about running a slightly older version of Django.
2010-08-20 03:27:44 +08:00
2008-08-24 06:25:40 +08:00
* :ref:`Install the latest development version
<installing-development-version>`. This is best for users who want the
latest-and-greatest features and aren't afraid of running brand-new code.
2010-08-20 03:27:44 +08:00
2010-10-19 08:26:39 +08:00
.. admonition:: Always refer to the documentation that corresponds to the
version of Django you're using!
2008-08-24 06:25:40 +08:00
2010-01-11 01:47:53 +08:00
If you do either of the first two steps, keep an eye out for parts of the
2008-08-24 06:25:40 +08:00
documentation marked **new in development version**. That phrase flags
2010-01-11 01:47:53 +08:00
features that are only available in development versions of Django, and
they likely won't work with an official release.
2010-10-19 08:26:39 +08:00
2008-08-24 06:25:40 +08:00
That's it!
----------
2010-08-20 03:27:44 +08:00
That's it -- you can now :doc:`move onto the tutorial </intro/tutorial01>`.
2008-08-24 06:25:40 +08:00