Installing the export extensions for GeoKey just takes four steps.
Install the extension using pip.
pip install geokey-export
Register the extension with installed apps: Open settings.py
from your local settings in a text editor and add geokey_export
to INSTALLED_APPS
.
INSTALLED_APPS += (
...
'geokey_export'
)
Add the required tables to the database. In your local settings directory, you should find manage.py
. Move to that directory and run:
python manage.py migrate geokey_export
Copy the static files by running the following command from the same directory:
python manage.py migrate collectstatic
geokey-export is now installed.