index.txt 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535
  1. .. _ref-gis-install:
  2. ======================
  3. GeoDjango Installation
  4. ======================
  5. .. highlight:: console
  6. Overview
  7. ========
  8. In general, GeoDjango installation requires:
  9. 1. :ref:`Python and Django <django>`
  10. 2. :ref:`spatial_database`
  11. 3. :ref:`geospatial_libs`
  12. Details for each of the requirements and installation instructions
  13. are provided in the sections below. In addition, platform-specific
  14. instructions are available for:
  15. * :ref:`macosx`
  16. * :ref:`windows`
  17. .. admonition:: Use the Source
  18. Because GeoDjango takes advantage of the latest in the open source geospatial
  19. software technology, recent versions of the libraries are necessary.
  20. If binary packages aren't available for your platform, installation from
  21. source may be required. When compiling the libraries from source, please
  22. follow the directions closely, especially if you're a beginner.
  23. Requirements
  24. ============
  25. .. _django:
  26. Python and Django
  27. -----------------
  28. Because GeoDjango is included with Django, please refer to Django's
  29. :ref:`installation instructions <installing-official-release>` for details on
  30. how to install.
  31. .. _spatial_database:
  32. Spatial database
  33. ----------------
  34. PostgreSQL (with PostGIS), MySQL (mostly with MyISAM engine), Oracle, and SQLite
  35. (with SpatiaLite) are the spatial databases currently supported.
  36. .. note::
  37. PostGIS is recommended, because it is the most mature and feature-rich
  38. open source spatial database.
  39. The geospatial libraries required for a GeoDjango installation depends
  40. on the spatial database used. The following lists the library requirements,
  41. supported versions, and any notes for each of the supported database backends:
  42. ================== ============================== ================== =========================================
  43. Database Library Requirements Supported Versions Notes
  44. ================== ============================== ================== =========================================
  45. PostgreSQL GEOS, PROJ.4, PostGIS 9.0+ Requires PostGIS.
  46. MySQL GEOS 5.5+ Not OGC-compliant; :ref:`limited functionality <mysql-spatial-limitations>`.
  47. Oracle GEOS 11.1+ XE not supported.
  48. SQLite GEOS, GDAL, PROJ.4, SpatiaLite 3.6.+ Requires SpatiaLite 2.3+, pysqlite2 2.5+
  49. ================== ============================== ================== =========================================
  50. See also `this comparison matrix`__ on the OSGeo Wiki for
  51. PostgreSQL/PostGIS/GEOS/GDAL possible combinations.
  52. __ http://trac.osgeo.org/postgis/wiki/UsersWikiPostgreSQLPostGIS
  53. Installation
  54. ============
  55. Geospatial libraries
  56. --------------------
  57. .. toctree::
  58. :maxdepth: 1
  59. geolibs
  60. Database installation
  61. ---------------------
  62. .. toctree::
  63. :maxdepth: 1
  64. postgis
  65. spatialite
  66. Add ``django.contrib.gis`` to :setting:`INSTALLED_APPS`
  67. -------------------------------------------------------
  68. Like other Django contrib applications, you will *only* need to add
  69. :mod:`django.contrib.gis` to :setting:`INSTALLED_APPS` in your settings.
  70. This is the so that ``gis`` templates can be located -- if not done, then
  71. features such as the geographic admin or KML sitemaps will not function properly.
  72. .. _addgoogleprojection:
  73. Add Google projection to ``spatial_ref_sys`` table
  74. --------------------------------------------------
  75. .. note::
  76. If you're running GDAL 1.7 or above (most users), you can skip this step.
  77. In order to conduct database transformations to the so-called "Google"
  78. projection (a spherical mercator projection used by Google Maps),
  79. an entry must be added to your spatial database's ``spatial_ref_sys`` table.
  80. Invoke the Django shell from your project and execute the
  81. ``add_srs_entry`` function:
  82. .. code-block:: pycon
  83. $ python manage.py shell
  84. >>> from django.contrib.gis.utils import add_srs_entry
  85. >>> add_srs_entry(900913)
  86. This adds an entry for the 900913 SRID to the ``spatial_ref_sys`` (or equivalent)
  87. table, making it possible for the spatial database to transform coordinates in
  88. this projection. You only need to execute this command *once* per spatial database.
  89. Troubleshooting
  90. ===============
  91. If you can't find the solution to your problem here then participate in the
  92. community! You can:
  93. * Join the ``#geodjango`` IRC channel on Freenode. Please be patient and polite
  94. -- while you may not get an immediate response, someone will attempt to answer
  95. your question as soon as they see it.
  96. * Ask your question on the `GeoDjango`__ mailing list.
  97. * File a ticket on the `Django trac`__ if you think there's a bug. Make
  98. sure to provide a complete description of the problem, versions used,
  99. and specify the component as "GIS".
  100. __ https://groups.google.com/d/forum/geodjango
  101. __ https://code.djangoproject.com/newticket
  102. .. _libsettings:
  103. Library environment settings
  104. ----------------------------
  105. By far, the most common problem when installing GeoDjango is that the
  106. external shared libraries (e.g., for GEOS and GDAL) cannot be located. [#]_
  107. Typically, the cause of this problem is that the operating system isn't aware
  108. of the directory where the libraries built from source were installed.
  109. In general, the library path may be set on a per-user basis by setting
  110. an environment variable, or by configuring the library path for the entire
  111. system.
  112. ``LD_LIBRARY_PATH`` environment variable
  113. ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  114. A user may set this environment variable to customize the library paths
  115. they want to use. The typical library directory for software
  116. built from source is ``/usr/local/lib``. Thus, ``/usr/local/lib`` needs
  117. to be included in the ``LD_LIBRARY_PATH`` variable. For example, the user
  118. could place the following in their bash profile::
  119. export LD_LIBRARY_PATH=/usr/local/lib
  120. Setting system library path
  121. ^^^^^^^^^^^^^^^^^^^^^^^^^^^
  122. On GNU/Linux systems, there is typically a file in ``/etc/ld.so.conf``, which may include
  123. additional paths from files in another directory, such as ``/etc/ld.so.conf.d``.
  124. As the root user, add the custom library path (like ``/usr/local/lib``) on a
  125. new line in ``ld.so.conf``. This is *one* example of how to do so::
  126. $ sudo echo /usr/local/lib >> /etc/ld.so.conf
  127. $ sudo ldconfig
  128. For OpenSolaris users, the system library path may be modified using the
  129. ``crle`` utility. Run ``crle`` with no options to see the current configuration
  130. and use ``crle -l`` to set with the new library path. Be *very* careful when
  131. modifying the system library path::
  132. # crle -l $OLD_PATH:/usr/local/lib
  133. .. _binutils:
  134. Install ``binutils``
  135. ^^^^^^^^^^^^^^^^^^^^
  136. GeoDjango uses the ``find_library`` function (from the ``ctypes.util`` Python
  137. module) to discover libraries. The ``find_library`` routine uses a program
  138. called ``objdump`` (part of the ``binutils`` package) to verify a shared
  139. library on GNU/Linux systems. Thus, if ``binutils`` is not installed on your
  140. Linux system then Python's ctypes may not be able to find your library even if
  141. your library path is set correctly and geospatial libraries were built perfectly.
  142. The ``binutils`` package may be installed on Debian and Ubuntu systems using the
  143. following command::
  144. $ sudo apt-get install binutils
  145. Similarly, on Red Hat and CentOS systems::
  146. $ sudo yum install binutils
  147. Platform-specific instructions
  148. ==============================
  149. .. _macosx:
  150. Mac OS X
  151. --------
  152. Because of the variety of packaging systems available for OS X, users have
  153. several different options for installing GeoDjango. These options are:
  154. * :ref:`homebrew`
  155. * :ref:`kyngchaos`
  156. * :ref:`fink`
  157. * :ref:`macports`
  158. * :ref:`build_from_source`
  159. .. note::
  160. Currently, the easiest and recommended approach for installing GeoDjango
  161. on OS X is to use the KyngChaos packages.
  162. This section also includes instructions for installing an upgraded version
  163. of :ref:`macosx_python` from packages provided by the Python Software
  164. Foundation, however, this is not required.
  165. .. _macosx_python:
  166. Python
  167. ^^^^^^
  168. Although OS X comes with Python installed, users can use framework
  169. installers (`2.7`__, `3.2`__ and `3.3`__ are available) provided by
  170. the Python Software Foundation. An advantage to using the installer is
  171. that OS X's Python will remain "pristine" for internal operating system
  172. use.
  173. __ http://python.org/ftp/python/2.7.5/
  174. __ http://python.org/ftp/python/3.2.5/
  175. __ http://python.org/ftp/python/3.3.2/
  176. .. note::
  177. You will need to modify the ``PATH`` environment variable in your
  178. ``.profile`` file so that the new version of Python is used when
  179. ``python`` is entered at the command-line::
  180. export PATH=/Library/Frameworks/Python.framework/Versions/Current/bin:$PATH
  181. .. _homebrew:
  182. Homebrew
  183. ^^^^^^^^
  184. `Homebrew`__ provides "recipes" for building binaries and packages from source.
  185. It provides recipes for the GeoDjango prerequisites on Macintosh computers
  186. running OS X. Because Homebrew still builds the software from source, the
  187. `Apple Developer Tools`_ are required.
  188. Summary::
  189. $ brew install postgresql
  190. $ brew install postgis
  191. $ brew install gdal
  192. $ brew install libgeoip
  193. __ http://brew.sh/
  194. .. _Apple Developer Tools: https://developer.apple.com/technologies/tools/
  195. .. _kyngchaos:
  196. KyngChaos packages
  197. ^^^^^^^^^^^^^^^^^^
  198. William Kyngesburye provides a number of `geospatial library binary packages`__
  199. that make it simple to get GeoDjango installed on OS X without compiling
  200. them from source. However, the `Apple Developer Tools`_ are still necessary
  201. for compiling the Python database adapters :ref:`psycopg2_kyngchaos` (for PostGIS)
  202. and :ref:`pysqlite2` (for SpatiaLite).
  203. .. note::
  204. SpatiaLite users should consult the :ref:`spatialite_macosx` section
  205. after installing the packages for additional instructions.
  206. Download the framework packages for:
  207. * UnixImageIO
  208. * PROJ
  209. * GEOS
  210. * SQLite3 (includes the SpatiaLite library)
  211. * GDAL
  212. Install the packages in the order they are listed above, as the GDAL and SQLite
  213. packages require the packages listed before them.
  214. Afterwards, you can also install the KyngChaos binary packages for `PostgreSQL
  215. and PostGIS`__.
  216. After installing the binary packages, you'll want to add the following to
  217. your ``.profile`` to be able to run the package programs from the command-line::
  218. export PATH=/Library/Frameworks/UnixImageIO.framework/Programs:$PATH
  219. export PATH=/Library/Frameworks/PROJ.framework/Programs:$PATH
  220. export PATH=/Library/Frameworks/GEOS.framework/Programs:$PATH
  221. export PATH=/Library/Frameworks/SQLite3.framework/Programs:$PATH
  222. export PATH=/Library/Frameworks/GDAL.framework/Programs:$PATH
  223. export PATH=/usr/local/pgsql/bin:$PATH
  224. __ http://www.kyngchaos.com/software/frameworks
  225. __ http://www.kyngchaos.com/software/postgres
  226. .. _psycopg2_kyngchaos:
  227. psycopg2
  228. ~~~~~~~~
  229. After you've installed the KyngChaos binaries and modified your ``PATH``, as
  230. described above, ``psycopg2`` may be installed using the following command::
  231. $ pip install psycopg2
  232. .. note::
  233. If you don't have ``pip``, follow the :ref:`installation instructions
  234. <installing-official-release>` to install it.
  235. .. _fink:
  236. Fink
  237. ^^^^
  238. `Kurt Schwehr`__ has been gracious enough to create GeoDjango packages for users
  239. of the `Fink`__ package system. The following packages are available, depending
  240. on which version of Python you want to use:
  241. * ``django-gis-py26``
  242. * ``django-gis-py25``
  243. * ``django-gis-py24``
  244. __ http://schwehr.org/blog/
  245. __ http://www.finkproject.org/
  246. .. _macports:
  247. MacPorts
  248. ^^^^^^^^
  249. `MacPorts`__ may be used to install GeoDjango prerequisites on Macintosh
  250. computers running OS X. Because MacPorts still builds the software from source,
  251. the `Apple Developer Tools`_ are required.
  252. Summary::
  253. $ sudo port install postgresql93-server
  254. $ sudo port install geos
  255. $ sudo port install proj
  256. $ sudo port install postgis
  257. $ sudo port install gdal +geos
  258. $ sudo port install libgeoip
  259. .. note::
  260. You will also have to modify the ``PATH`` in your ``.profile`` so
  261. that the MacPorts programs are accessible from the command-line::
  262. export PATH=/opt/local/bin:/opt/local/lib/postgresql93/bin
  263. In addition, add the ``DYLD_FALLBACK_LIBRARY_PATH`` setting so that
  264. the libraries can be found by Python::
  265. export DYLD_FALLBACK_LIBRARY_PATH=/opt/local/lib:/opt/local/lib/postgresql93
  266. __ http://www.macports.org/
  267. .. _windows:
  268. Windows
  269. -------
  270. Proceed through the following sections sequentially in order to install
  271. GeoDjango on Windows.
  272. .. note::
  273. These instructions assume that you are using 32-bit versions of
  274. all programs. While 64-bit versions of Python and PostgreSQL 9.x
  275. are available, 64-bit versions of spatial libraries, like
  276. GEOS and GDAL, are not yet provided by the :ref:`OSGeo4W` installer.
  277. Python
  278. ^^^^^^
  279. First, download the latest `Python 2.7 installer`__ from the Python Web site.
  280. Next, run the installer and keep the defaults -- for example, keep
  281. 'Install for all users' checked and the installation path set as
  282. ``C:\Python27``.
  283. .. note::
  284. You may already have a version of Python installed in ``C:\python`` as ESRI
  285. products sometimes install a copy there. *You should still install a
  286. fresh version of Python 2.7.*
  287. __ http://python.org/download/
  288. PostgreSQL
  289. ^^^^^^^^^^
  290. First, download the latest `PostgreSQL 9.x installer`__ from the
  291. `EnterpriseDB`__ Web site. After downloading, simply run the installer,
  292. follow the on-screen directions, and keep the default options unless
  293. you know the consequences of changing them.
  294. .. note::
  295. The PostgreSQL installer creates both a new Windows user to be the
  296. 'postgres service account' and a ``postgres`` database superuser
  297. You will be prompted once to set the password for both accounts --
  298. make sure to remember it!
  299. When the installer completes, it will ask to launch the Application Stack
  300. Builder (ASB) on exit -- keep this checked, as it is necessary to
  301. install :ref:`postgisasb`.
  302. .. note::
  303. If installed successfully, the PostgreSQL server will run in the
  304. background each time the system as started as a Windows service.
  305. A :menuselection:`PostgreSQL 9.x` start menu group will created
  306. and contains shortcuts for the ASB as well as the 'SQL Shell',
  307. which will launch a ``psql`` command window.
  308. __ http://www.enterprisedb.com/products-services-training/pgdownload
  309. __ http://www.enterprisedb.com
  310. .. _postgisasb:
  311. PostGIS
  312. ^^^^^^^
  313. From within the Application Stack Builder (to run outside of the installer,
  314. :menuselection:`Start --> Programs --> PostgreSQL 9.x`), select
  315. :menuselection:`PostgreSQL Database Server 9.x on port 5432` from the drop down
  316. menu. Next, expand the :menuselection:`Categories --> Spatial Extensions` menu
  317. tree and select :menuselection:`PostGIS 1.5 for PostgreSQL 9.x`.
  318. After clicking next, you will be prompted to select your mirror, PostGIS
  319. will be downloaded, and the PostGIS installer will begin. Select only the
  320. default options during install (e.g., do not uncheck the option to create a
  321. default PostGIS database).
  322. .. note::
  323. You will be prompted to enter your ``postgres`` database superuser
  324. password in the 'Database Connection Information' dialog.
  325. psycopg2
  326. ^^^^^^^^
  327. The ``psycopg2`` Python module provides the interface between Python and the
  328. PostgreSQL database. Download the latest `Windows installer`__ for your version
  329. of Python and PostgreSQL and run using the default settings. [#]_
  330. __ http://www.stickpeople.com/projects/python/win-psycopg/
  331. .. _osgeo4w:
  332. OSGeo4W
  333. ^^^^^^^
  334. The `OSGeo4W installer`_ makes it simple to install the PROJ.4, GDAL, and GEOS
  335. libraries required by GeoDjango. First, download the `OSGeo4W installer`_,
  336. and run it. Select :menuselection:`Express Web-GIS Install` and click next.
  337. In the 'Select Packages' list, ensure that GDAL is selected; MapServer and
  338. Apache are also enabled by default, but are not required by GeoDjango and
  339. may be unchecked safely. After clicking next, the packages will be
  340. automatically downloaded and installed, after which you may exit the
  341. installer.
  342. .. _OSGeo4W installer: http://trac.osgeo.org/osgeo4w/
  343. Modify Windows environment
  344. ^^^^^^^^^^^^^^^^^^^^^^^^^^
  345. In order to use GeoDjango, you will need to add your Python and OSGeo4W
  346. directories to your Windows system ``Path``, as well as create ``GDAL_DATA``
  347. and ``PROJ_LIB`` environment variables. The following set of commands,
  348. executable with ``cmd.exe``, will set this up:
  349. .. code-block:: bat
  350. set OSGEO4W_ROOT=C:\OSGeo4W
  351. set PYTHON_ROOT=C:\Python27
  352. set GDAL_DATA=%OSGEO4W_ROOT%\share\gdal
  353. set PROJ_LIB=%OSGEO4W_ROOT%\share\proj
  354. set PATH=%PATH%;%PYTHON_ROOT%;%OSGEO4W_ROOT%\bin
  355. reg ADD "HKLM\SYSTEM\CurrentControlSet\Control\Session Manager\Environment" /v Path /t REG_EXPAND_SZ /f /d "%PATH%"
  356. reg ADD "HKLM\SYSTEM\CurrentControlSet\Control\Session Manager\Environment" /v GDAL_DATA /t REG_EXPAND_SZ /f /d "%GDAL_DATA%"
  357. reg ADD "HKLM\SYSTEM\CurrentControlSet\Control\Session Manager\Environment" /v PROJ_LIB /t REG_EXPAND_SZ /f /d "%PROJ_LIB%"
  358. For your convenience, these commands are available in the executable batch
  359. script, :download:`geodjango_setup.bat`.
  360. .. note::
  361. Administrator privileges are required to execute these commands.
  362. To do this, right-click on :download:`geodjango_setup.bat` and select
  363. :menuselection:`Run as administrator`. You need to log out and log back in again
  364. for the settings to take effect.
  365. .. note::
  366. If you customized the Python or OSGeo4W installation directories,
  367. then you will need to modify the ``OSGEO4W_ROOT`` and/or ``PYTHON_ROOT``
  368. variables accordingly.
  369. Install Django and set up database
  370. ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  371. Finally, :ref:`install Django <installing-official-release>` on your system.
  372. .. rubric:: Footnotes
  373. .. [#] GeoDjango uses the :func:`~ctypes.util.find_library` routine from
  374. ``ctypes.util`` to locate shared libraries.
  375. .. [#] The ``psycopg2`` Windows installers are packaged and maintained by
  376. `Jason Erickson <http://www.stickpeople.com/projects/python/win-psycopg/>`_.