install.txt 15 KB

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