diff options
| author | Aymeric Augustin <aymeric.augustin@m4x.org> | 2012-03-03 09:11:54 +0000 |
|---|---|---|
| committer | Aymeric Augustin <aymeric.augustin@m4x.org> | 2012-03-03 09:11:54 +0000 |
| commit | c0e73a4909832e0db7cac5345128979a21529786 (patch) | |
| tree | 19ec2c67ab07314dd5d82c929acd8a3d013bd58a /docs/ref | |
| parent | d636150e533a2954f9b74aa6ca2e7375b18437ef (diff) | |
Fixed #9995 -- Updated the installation instructions to recommend pip. Also fixed ReST errors. Refs #9112.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@17636 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs/ref')
| -rw-r--r-- | docs/ref/contrib/gis/install.txt | 24 |
1 files changed, 8 insertions, 16 deletions
diff --git a/docs/ref/contrib/gis/install.txt b/docs/ref/contrib/gis/install.txt index 419ed59369..06bee69244 100644 --- a/docs/ref/contrib/gis/install.txt +++ b/docs/ref/contrib/gis/install.txt @@ -40,7 +40,9 @@ Python and Django ----------------- Because GeoDjango is included with Django, please refer to Django's -:doc:`installation instructions </intro/install>` for details on how to install. +:ref:`installation instructions <installing-official-release>` for details on +how to install. + .. _spatial_database: @@ -837,13 +839,12 @@ psycopg2 After you've installed the KyngChaos binaries and modified your ``PATH``, as described above, ``psycopg2`` may be installed using the following command:: - $ sudo python easy_install psycopg2 + $ sudo pip install psycopg2 .. note:: - To use ``easy_install`` you'll need to install Python's `setuptools`_. - -.. _setuptools: http://pypi.python.org/pypi/setuptools + If you don't have ``pip``, follow the the :ref:`installation instructions + <installing-official-release>` to install it. .. _pysqlite2_kyngchaos: @@ -961,8 +962,7 @@ Ubuntu 10.04 uses PostGIS 1.4, while Ubuntu 10.10 uses PostGIS 1.5 (with geography support). The installation commands are:: $ sudo apt-get install binutils gdal-bin libproj-dev postgresql-8.4-postgis \ - postgresql-server-dev-8.4 python-psycopg2 python-setuptools - $ sudo easy_install Django + postgresql-server-dev-8.4 python-psycopg2 .. _ibex: @@ -972,13 +972,7 @@ geography support). The installation commands are:: Use the synaptic package manager to install the following packages:: $ sudo apt-get install binutils gdal-bin postgresql-8.3-postgis \ - postgresql-server-dev-8.3 python-psycopg2 python-setuptools - -Afterwards, you may install Django with Python's ``easy_install`` script (the -Ubuntu package ``python-django`` uses an older version missing several -important bug fixes for GeoDjango):: - - $ sudo easy_install Django + postgresql-server-dev-8.3 python-psycopg2 That's it! For the curious, the required binary prerequisites packages are: @@ -990,7 +984,6 @@ That's it! For the curious, the required binary prerequisites packages are: * ``libgdal1-1.5.0``: for GDAL 1.5.0 library * ``proj``: for PROJ 4.6.0 -- but no datum shifting files, see note below * ``python-psycopg2`` -* ``python-setuptools``: for ``easy_install`` Optional packages to consider: @@ -1060,7 +1053,6 @@ Required package information: * ``postgresql-8.1`` * ``postgresql-server-dev-8.1``: for ``pg_config`` * ``python-psycopg2`` -* ``python-setuptools``: for ``easy_install`` Optional packages: |
