Skip to content

Latest commit

 

History

History
19 lines (13 loc) · 474 Bytes

installation.rst

File metadata and controls

19 lines (13 loc) · 474 Bytes

Installation

Install django-osm-field into your virtual environment or you site-packages using pip:

$ pip install django-osm-field

To make django-osm-field available in your Django project, you first have to add it to the INSTALLED_APPS in your settings.py. If you are unsure where to put it, just append it:

INSTALLED_APPS = (
    ...
    'osm_field',
    ...
)