[3.0.x] Made minor edits and small fixes to docs/faq/install.txt.

Backport of f52022ad96 from master
This commit is contained in:
Katie McLaughlin 2019-10-03 12:41:33 -04:00 committed by Mariusz Felisiak
parent 717d845737
commit 4917b53e50
1 changed files with 15 additions and 13 deletions

View File

@ -19,19 +19,21 @@ What are Django's prerequisites?
Django requires Python. See the table in the next question for the versions of Django requires Python. See the table in the next question for the versions of
Python that work with each version of Django. Other Python libraries may be Python that work with each version of Django. Other Python libraries may be
required for some uses, but you'll receive an error about it as they're needed. required for some use cases, but you'll receive an error about them as they're
needed.
For a development environment -- if you just want to experiment with Django -- For a development environment -- if you just want to experiment with Django --
you don't need to have a separate Web server installed; Django comes with its you don't need to have a separate Web server installed or database server.
own lightweight development server. For a production environment, Django follows
the WSGI spec, :pep:`3333`, which means it can run on a variety of server
platforms. See :doc:`Deploying Django </howto/deployment/index>` for some
popular alternatives.
If you want to use Django with a database, which is probably the case, you'll Django comes with its own :djadmin:`lightweight development server<runserver>`.
also need a database engine. PostgreSQL_ is recommended, because we're For a production environment, Django follows the WSGI spec, :pep:`3333`, which
PostgreSQL fans, and MariaDB_, MySQL_, `SQLite`_, and Oracle_ are also means it can run on a variety of web servers. See :doc:`Deploying Django
supported. </howto/deployment/index>` for more information.
Django runs `SQLite`_ by default, which is included in Python installations.
For a production environment, we recommend PostgreSQL_; but we also officially
support MariaDB_, MySQL_, `SQLite`_, and Oracle_. See :doc:`Supported Databases
</ref/databases>` for more information.
.. _Python: https://www.python.org/ .. _Python: https://www.python.org/
.. _PostgreSQL: https://www.postgresql.org/ .. _PostgreSQL: https://www.postgresql.org/
@ -60,9 +62,9 @@ download page <https://www.python.org/downloads/>`_.
Typically, we will support a Python version up to and including the first Typically, we will support a Python version up to and including the first
Django LTS release whose security support ends after security support for that Django LTS release whose security support ends after security support for that
version of Python ends. For example, Python 3.3 security support ends September version of Python ends. For example, Python 3.3 security support ended
2017 and Django 1.8 LTS security support ends April 2018. Therefore Django 1.8 September 2017 and Django 1.8 LTS security support ended April 2018. Therefore
is the last version to support Python 3.3. Django 1.8 is the last version to support Python 3.3.
What Python version should I use with Django? What Python version should I use with Django?
============================================= =============================================