parts/django/docs/faq/install.txt
changeset 69 c6bca38c1cbf
equal deleted inserted replaced
68:5ff1fc726848 69:c6bca38c1cbf
       
     1 FAQ: Installation
       
     2 =================
       
     3 
       
     4 How do I get started?
       
     5 ---------------------
       
     6 
       
     7     #. `Download the code`_.
       
     8     #. Install Django (read the :doc:`installation guide </intro/install>`).
       
     9     #. Walk through the :doc:`tutorial </intro/tutorial01>`.
       
    10     #. Check out the rest of the :doc:`documentation </index>`, and `ask questions`_ if you
       
    11        run into trouble.
       
    12 
       
    13 .. _`Download the code`: http://www.djangoproject.com/download/
       
    14 .. _ask questions: http://www.djangoproject.com/community/
       
    15 
       
    16 What are Django's prerequisites?
       
    17 --------------------------------
       
    18 
       
    19 Django requires Python_, specifically any version of Python from 2.4
       
    20 through 2.7. No other Python libraries are required for basic Django
       
    21 usage.
       
    22 
       
    23 For a development environment -- if you just want to experiment with Django --
       
    24 you don't need to have a separate Web server installed; Django comes with its
       
    25 own lightweight development server. For a production environment, Django
       
    26 follows the WSGI_ spec, which means it can run on a variety of server
       
    27 platforms.  See :doc:`Deploying Django </howto/deployment/index>` for some
       
    28 popular alternatives.  Also, the `server arrangements wiki page`_ contains
       
    29 details for several deployment strategies.
       
    30 
       
    31 If you want to use Django with a database, which is probably the case, you'll
       
    32 also need a database engine. PostgreSQL_ is recommended, because we're
       
    33 PostgreSQL fans, and MySQL_, `SQLite 3`_, and Oracle_ are also supported.
       
    34 
       
    35 .. _Python: http://www.python.org/
       
    36 .. _WSGI: http://www.python.org/dev/peps/pep-0333/
       
    37 .. _server arrangements wiki page: http://code.djangoproject.com/wiki/ServerArrangements
       
    38 .. _PostgreSQL: http://www.postgresql.org/
       
    39 .. _MySQL: http://www.mysql.com/
       
    40 .. _`SQLite 3`: http://www.sqlite.org/
       
    41 .. _Oracle: http://www.oracle.com/
       
    42 
       
    43 Do I lose anything by using Python 2.4 versus newer Python versions, such as Python 2.5 or 2.6?
       
    44 -----------------------------------------------------------------------------------------------
       
    45 
       
    46 Not in the core framework. Currently, Django itself officially supports any
       
    47 version of Python from 2.4 through 2.7, inclusive. However, newer versions of
       
    48 Python are often faster, have more features, and are better supported.
       
    49 Third-party applications for use with Django are, of course, free to set their
       
    50 own version requirements.
       
    51 
       
    52 Over the next year or two Django will begin dropping support for older Python
       
    53 versions as part of a migration which will end with Django running on Python 3
       
    54 (see below for details).
       
    55 
       
    56 All else being equal, we recommend that you use the latest 2.x release
       
    57 (currently Python 2.7). This will let you take advantage of the numerous
       
    58 improvements and optimizations to the Python language since version 2.4, and
       
    59 will help ease the process of dropping support for older Python versions on
       
    60 the road to Python 3.
       
    61 
       
    62 Can I use Django with Python 2.3?
       
    63 ---------------------------------
       
    64 
       
    65 Django 1.1 (and earlier) supported Python 2.3. Django 1.2 and newer does not.
       
    66 We highly recommend you upgrade Python if at all possible, but Django 1.1 will
       
    67 continue to work on Python 2.3.
       
    68 
       
    69 Can I use Django with Python 3?
       
    70 -------------------------------
       
    71 
       
    72 Not at the moment. Python 3.0 introduced a number of
       
    73 backwards-incompatible changes to the Python language, and although
       
    74 these changes are generally a good thing for Python's future, it will
       
    75 be a while before most Python software catches up and is able to run
       
    76 on Python 3.0. For larger Python-based software like Django, the
       
    77 transition is expected to take at least a year or two (since it
       
    78 involves dropping support for older Python releases and so must be
       
    79 done gradually).
       
    80 
       
    81 In the meantime, Python 2.x releases will be supported and provided
       
    82 with bug fixes and security updates by the Python development team, so
       
    83 continuing to use a Python 2.x release during the transition should
       
    84 not present any risk.
       
    85 
       
    86 Will Django run under shared hosting (like TextDrive or Dreamhost)?
       
    87 -------------------------------------------------------------------
       
    88 
       
    89 See our `Django-friendly Web hosts`_ page.
       
    90 
       
    91 .. _`Django-friendly Web hosts`: http://code.djangoproject.com/wiki/DjangoFriendlyWebHosts
       
    92 
       
    93 Should I use the stable version or development version?
       
    94 -------------------------------------------------------
       
    95 
       
    96 Generally, if you're using code in production, you should be using a
       
    97 stable release. The Django project publishes a full stable release
       
    98 every nine months or so, with bugfix updates in between. These stable
       
    99 releases contain the API that is covered by our backwards
       
   100 compatibility guarantees; if you write code against stable releases,
       
   101 you shouldn't have any problems upgrading when the next official
       
   102 version is released.