install.txt 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372
  1. =====================
  2. How to install Django
  3. =====================
  4. This document will get you up and running with Django.
  5. Install Python
  6. ==============
  7. Being a Python Web framework, Django requires Python. It works with Python 2.7,
  8. 3.2 or 3.3.
  9. Get Python at http://www.python.org. If you're running Linux or Mac OS X, you
  10. probably already have it installed.
  11. .. admonition:: Django on Jython
  12. If you use Jython_ (a Python implementation for the Java platform), you'll
  13. need to follow a few additional steps. See :doc:`/howto/jython` for details.
  14. .. _jython: http://jython.org/
  15. .. admonition:: Python on Windows
  16. On Windows, you might need to adjust your ``PATH`` environment variable
  17. to include paths to Python executable and additional scripts. For example,
  18. if your Python is installed in ``C:\Python27\``, the following paths need
  19. to be added to ``PATH``::
  20. C:\Python27\;C:\Python27\Scripts;
  21. Install Apache and mod_wsgi
  22. =============================
  23. If you just want to experiment with Django, skip ahead to the next
  24. section; Django includes a lightweight web server you can use for
  25. testing, so you won't need to set up Apache until you're ready to
  26. deploy Django in production.
  27. If you want to use Django on a production site, use `Apache`_ with
  28. `mod_wsgi`_. mod_wsgi can operate in one of two modes: an embedded
  29. mode and a daemon mode. In embedded mode, mod_wsgi is similar to
  30. mod_perl -- it embeds Python within Apache and loads Python code into
  31. memory when the server starts. Code stays in memory throughout the
  32. life of an Apache process, which leads to significant performance
  33. gains over other server arrangements. In daemon mode, mod_wsgi spawns
  34. an independent daemon process that handles requests. The daemon
  35. process can run as a different user than the Web server, possibly
  36. leading to improved security, and the daemon process can be restarted
  37. without restarting the entire Apache Web server, possibly making
  38. refreshing your codebase more seamless. Consult the mod_wsgi
  39. documentation to determine which mode is right for your setup. Make
  40. sure you have Apache installed, with the mod_wsgi module activated.
  41. Django will work with any version of Apache that supports mod_wsgi.
  42. See :doc:`How to use Django with mod_wsgi </howto/deployment/wsgi/modwsgi>`
  43. for information on how to configure mod_wsgi once you have it
  44. installed.
  45. If you can't use mod_wsgi for some reason, fear not: Django supports many other
  46. deployment options. One is :doc:`uWSGI </howto/deployment/wsgi/uwsgi>`; it works
  47. very well with `nginx`_. Additionally, Django follows the WSGI spec
  48. (:pep:`3333`), which allows it to run on a variety of server platforms. See the
  49. `server-arrangements wiki page`_ for specific installation instructions for
  50. each platform.
  51. .. _Apache: http://httpd.apache.org/
  52. .. _nginx: http://nginx.org/
  53. .. _mod_wsgi: http://code.google.com/p/modwsgi/
  54. .. _server-arrangements wiki page: https://code.djangoproject.com/wiki/ServerArrangements
  55. .. _database-installation:
  56. Get your database running
  57. =========================
  58. If you plan to use Django's database API functionality, you'll need to make
  59. sure a database server is running. Django supports many different database
  60. servers and is officially supported with PostgreSQL_, MySQL_, Oracle_ and
  61. SQLite_.
  62. If you are developing a simple project or something you don't plan to deploy
  63. in a production environment, SQLite is generally the simplest option as it
  64. doesn't require running a separate server. However, SQLite has many differences
  65. from other databases, so if you are working on something substantial, it's
  66. recommended to develop with the same database as you plan on using in
  67. production.
  68. In addition to the officially supported databases, there are backends provided
  69. by 3rd parties that allow you to use other databases with Django:
  70. * `Sybase SQL Anywhere`_
  71. * `IBM DB2`_
  72. * `Microsoft SQL Server 2005`_
  73. * Firebird_
  74. * ODBC_
  75. The Django versions and ORM features supported by these unofficial backends
  76. vary considerably. Queries regarding the specific capabilities of these
  77. unofficial backends, along with any support queries, should be directed to the
  78. support channels provided by each 3rd party project.
  79. In addition to a database backend, you'll need to make sure your Python
  80. database bindings are installed.
  81. * If you're using PostgreSQL, you'll need the `postgresql_psycopg2`_ package.
  82. You might want to refer to our :ref:`PostgreSQL notes <postgresql-notes>` for
  83. further technical details specific to this database.
  84. If you're on Windows, check out the unofficial `compiled Windows version`_.
  85. * If you're using MySQL, you'll need the ``MySQL-python`` package, version
  86. 1.2.1p2 or higher. You will also want to read the database-specific
  87. :ref:`notes for the MySQL backend <mysql-notes>`.
  88. * If you're using Oracle, you'll need a copy of cx_Oracle_, but please
  89. read the database-specific :ref:`notes for the Oracle backend <oracle-notes>`
  90. for important information regarding supported versions of both Oracle and
  91. ``cx_Oracle``.
  92. * If you're using an unofficial 3rd party backend, please consult the
  93. documentation provided for any additional requirements.
  94. If you plan to use Django's ``manage.py migrate`` command to automatically
  95. create database tables for your models (after first installing Django and
  96. creating a project), you'll need to ensure that Django has permission to create
  97. and alter tables in the database you're using; if you plan to manually create
  98. the tables, you can simply grant Django ``SELECT``, ``INSERT``, ``UPDATE`` and
  99. ``DELETE`` permissions. After creating a database user with these
  100. permissions, you'll specify the details in your project's settings file,
  101. see :setting:`DATABASES` for details.
  102. If you're using Django's :doc:`testing framework</topics/testing/index>` to test
  103. database queries, Django will need permission to create a test database.
  104. .. _PostgreSQL: http://www.postgresql.org/
  105. .. _MySQL: http://www.mysql.com/
  106. .. _postgresql_psycopg2: http://initd.org/psycopg/
  107. .. _compiled Windows version: http://stickpeople.com/projects/python/win-psycopg/
  108. .. _SQLite: http://www.sqlite.org/
  109. .. _pysqlite: http://trac.edgewall.org/wiki/PySqlite
  110. .. _cx_Oracle: http://cx-oracle.sourceforge.net/
  111. .. _Oracle: http://www.oracle.com/
  112. .. _Sybase SQL Anywhere: http://code.google.com/p/sqlany-django/
  113. .. _IBM DB2: http://code.google.com/p/ibm-db/
  114. .. _Microsoft SQL Server 2005: https://bitbucket.org/Manfre/django-mssql/
  115. .. _Firebird: http://code.google.com/p/django-firebird/
  116. .. _ODBC: http://code.google.com/p/django-pyodbc/
  117. .. _removing-old-versions-of-django:
  118. Remove any old versions of Django
  119. =================================
  120. If you are upgrading your installation of Django from a previous version,
  121. you will need to uninstall the old Django version before installing the
  122. new version.
  123. If you installed Django using pip_ or ``easy_install`` previously, installing
  124. with pip_ or ``easy_install`` again will automatically take care of the old
  125. version, so you don't need to do it yourself.
  126. If you previously installed Django using ``python setup.py install``,
  127. uninstalling is as simple as deleting the ``django`` directory from your Python
  128. ``site-packages``. To find the directory you need to remove, you can run the
  129. following at your shell prompt (not the interactive Python prompt):
  130. .. code-block:: bash
  131. python -c "import sys; sys.path = sys.path[1:]; import django; print(django.__path__)"
  132. .. _install-django-code:
  133. Install the Django code
  134. =======================
  135. Installation instructions are slightly different depending on whether you're
  136. installing a distribution-specific package, downloading the latest official
  137. release, or fetching the latest development version.
  138. It's easy, no matter which way you choose.
  139. Installing a distribution-specific package
  140. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  141. Check the :doc:`distribution specific notes </misc/distributions>` to see if
  142. your platform/distribution provides official Django packages/installers.
  143. Distribution-provided packages will typically allow for automatic installation
  144. of dependencies and easy upgrade paths.
  145. .. _installing-official-release:
  146. Installing an official release with ``pip``
  147. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  148. This is the recommended way to install Django.
  149. 1. Install pip_. The easiest is to use the `standalone pip installer`_. If your
  150. distribution already has ``pip`` installed, you might need to update it if
  151. it's outdated. (If it's outdated, you'll know because installation won't
  152. work.)
  153. 2. (optional) Take a look at virtualenv_ and virtualenvwrapper_. These tools
  154. provide isolated Python environments, which are more practical than
  155. installing packages systemwide. They also allow installing packages
  156. without administrator privileges. It's up to you to decide if you want to
  157. learn and use them.
  158. 3. If you're using Linux, Mac OS X or some other flavor of Unix, enter the
  159. command ``sudo pip install Django`` at the shell prompt. If you're using
  160. Windows, start a command shell with administrator privileges and run
  161. the command ``pip install Django``. This will install Django in your Python
  162. installation's ``site-packages`` directory.
  163. If you're using a virtualenv, you don't need ``sudo`` or administrator
  164. privileges, and this will install Django in the virtualenv's
  165. ``site-packages`` directory.
  166. .. _pip: http://www.pip-installer.org/
  167. .. _virtualenv: http://www.virtualenv.org/
  168. .. _virtualenvwrapper: http://www.doughellmann.com/docs/virtualenvwrapper/
  169. .. _standalone pip installer: http://www.pip-installer.org/en/latest/installing.html#using-the-installer
  170. Installing an official release manually
  171. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  172. 1. Download the latest release from our `download page`_.
  173. 2. Untar the downloaded file (e.g. ``tar xzvf Django-X.Y.tar.gz``,
  174. where ``X.Y`` is the version number of the latest release).
  175. If you're using Windows, you can download the command-line tool
  176. bsdtar_ to do this, or you can use a GUI-based tool such as 7-zip_.
  177. 3. Change into the directory created in step 2 (e.g. ``cd Django-X.Y``).
  178. 4. If you're using Linux, Mac OS X or some other flavor of Unix, enter the
  179. command ``sudo python setup.py install`` at the shell prompt. If you're
  180. using Windows, start a command shell with administrator privileges and
  181. run the command ``python setup.py install``. This will install Django in
  182. your Python installation's ``site-packages`` directory.
  183. .. admonition:: Removing an old version
  184. If you use this installation technique, it is particularly important
  185. that you :ref:`remove any existing
  186. installations<removing-old-versions-of-django>` of Django
  187. first. Otherwise, you can end up with a broken installation that
  188. includes files from previous versions that have since been removed from
  189. Django.
  190. .. _download page: https://www.djangoproject.com/download/
  191. .. _bsdtar: http://gnuwin32.sourceforge.net/packages/bsdtar.htm
  192. .. _7-zip: http://www.7-zip.org/
  193. .. _installing-development-version:
  194. Installing the development version
  195. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  196. .. admonition:: Tracking Django development
  197. If you decide to use the latest development version of Django,
  198. you'll want to pay close attention to `the development timeline`_,
  199. and you'll want to keep an eye on the :ref:`release notes for the
  200. upcoming release <development_release_notes>`. This will help you stay
  201. on top of any new features you might want to use, as well as any changes
  202. you'll need to make to your code when updating your copy of Django.
  203. (For stable releases, any necessary changes are documented in the
  204. release notes.)
  205. .. _the development timeline: https://code.djangoproject.com/timeline
  206. If you'd like to be able to update your Django code occasionally with the
  207. latest bug fixes and improvements, follow these instructions:
  208. 1. Make sure that you have Git_ installed and that you can run its commands
  209. from a shell. (Enter ``git help`` at a shell prompt to test this.)
  210. 2. Check out Django's main development branch (the 'trunk' or 'master') like
  211. so:
  212. .. code-block:: bash
  213. git clone git://github.com/django/django.git django-trunk
  214. This will create a directory ``django-trunk`` in your current directory.
  215. 3. Make sure that the Python interpreter can load Django's code. The most
  216. convenient way to do this is via pip_. Run the following command:
  217. .. code-block:: bash
  218. sudo pip install -e django-trunk/
  219. (If using a virtualenv_ you can omit ``sudo``.)
  220. This will make Django's code importable, and will also make the
  221. ``django-admin.py`` utility command available. In other words, you're all
  222. set!
  223. If you don't have pip_ available, see the alternative instructions for
  224. `installing the development version without pip`_.
  225. .. warning::
  226. Don't run ``sudo python setup.py install``, because you've already
  227. carried out the equivalent actions in step 3.
  228. When you want to update your copy of the Django source code, just run the
  229. command ``git pull`` from within the ``django-trunk`` directory. When you do
  230. this, Git will automatically download any changes.
  231. .. _Git: http://git-scm.com/
  232. .. _`modify Python's search path`: http://docs.python.org/install/index.html#modifying-python-s-search-path
  233. .. _installing-the-development-version-without-pip:
  234. Installing the development version without pip
  235. ----------------------------------------------
  236. If you don't have pip_, you can instead manually `modify Python's search
  237. path`_.
  238. First follow steps 1 and 2 above, so that you have a ``django-trunk`` directory
  239. with a checkout of Django's latest code in it. Then add a ``.pth`` file
  240. containing the full path to the ``django-trunk`` directory to your system's
  241. ``site-packages`` directory. For example, on a Unix-like system:
  242. .. code-block:: bash
  243. echo WORKING-DIR/django-trunk > SITE-PACKAGES-DIR/django.pth
  244. In the above line, change ``WORKING-DIR/django-trunk`` to match the full path
  245. to your new ``django-trunk`` directory, and change ``SITE-PACKAGES-DIR`` to
  246. match the location of your system's ``site-packages`` directory.
  247. The location of the ``site-packages`` directory depends on the operating
  248. system, and the location in which Python was installed. To find your system's
  249. ``site-packages`` location, execute the following:
  250. .. code-block:: bash
  251. python -c "from distutils.sysconfig import get_python_lib; print(get_python_lib())"
  252. (Note that this should be run from a shell prompt, not a Python interactive
  253. prompt.)
  254. Some Debian-based Linux distributions have separate ``site-packages``
  255. directories for user-installed packages, such as when installing Django from
  256. a downloaded tarball. The command listed above will give you the system's
  257. ``site-packages``, the user's directory can be found in ``/usr/local/lib/``
  258. instead of ``/usr/lib/``.
  259. Next you need to make the ``django-admin.py`` utility available in your
  260. shell PATH.
  261. On Unix-like systems, create a symbolic link to the file
  262. ``django-trunk/django/bin/django-admin.py`` in a directory on your system
  263. path, such as ``/usr/local/bin``. For example:
  264. .. code-block:: bash
  265. ln -s WORKING-DIR/django-trunk/django/bin/django-admin.py /usr/local/bin/
  266. (In the above line, change WORKING-DIR to match the full path to your new
  267. ``django-trunk`` directory.)
  268. This simply lets you type ``django-admin.py`` from within any directory,
  269. rather than having to qualify the command with the full path to the file.
  270. On Windows systems, the same result can be achieved by copying the file
  271. ``django-trunk/django/bin/django-admin.py`` to somewhere on your system
  272. path, for example ``C:\Python27\Scripts``.