InstallationΒΆ

You can install django-teledex either via the Python Package Index (PyPI) or from github.

To install using pip;

$ pip install django-teledex

From github;

$ pip install git+https://github.com/alexhayes/django-teledex.git

Then place django_teledex in your INSTALLED_APPS;

INSTALLED_APPS = (
    ...
    'django_teledex',
    ...
)