Skip to content

Latest commit

 

History

History
39 lines (32 loc) · 926 Bytes

installation.md

File metadata and controls

39 lines (32 loc) · 926 Bytes

Installation

Stable release

From PyPI using pip.

$ pip install django_fmft

This is the preferred method to install Django Filtered Model Formset Tables, as it will always install the most recent stable release.


From sources

The sources for Django Filtered Model Formset Tables can be downloaded from the Github repo.

You can either clone the public repository:

$ git clone git://github.com/powderflask/django-fmft

Or download the tarball:

$ curl -OJL https://github.com/powderflask/django-fmft/tarball/master

Once you have a copy of the source, you can install it with:

$ pip install {PATH-TO-PACKAGE-DIRECTORY}

Once installed, add django-fmft to your INSTALLED_APPS.

INSTALLED_APPS = [
    ...
    'django_fmft',
    ...
]