Installation

Adding django-mptt2 to your project is simple as installing other django apps.

1. Install python package

$ pip install django-mptt2

2. Provide mptt2 to your django project

Add mptt2 to the INSTALLED_APPS setting of your settings.py:

INSTALLED_APPS = [
   # other apps
   "mptt2"
]