Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

preliminary

  1. yum install gcc-c++
  2. sudo yum install python-devel (to support python bindings)
  3. sudo yum install swig (to support python bindings)

install

  1. ./configure (or ./configure --enable-python)
  2. ./make (or just make)
  3. sudo ./make install

...

http://download.osgeo.org/gdal/gdal-1.6.2.tar.gz
http://geodjango.org/docs/install.html

Without GDAL, geodjango wfs does not work.
We build without the gdal python bindings because geodjango has its own.
The install is bog standard; make takes a good while.

  1. ./configure ./configure --with-python
  2. make
  3. sudo make install
    links http://geodjango.org/docs/install.html
DJANGO

Since this is pure python, you can copy this into the python site-packages.
Or install as you see fit.

...