Installation

In order to install Django Geo simply use pip:

pip install django-geo

or easy_install:

easy_install django-geo

Configuration

After installation add geo to INSTALLED_APPS:

INSTALLED_APPS = (
    # ...
    'geo',
)