Django Categories 0.8.8 documentation
Install django-categories:
pip install django-categories
Add "categories" and "editor" to your INSTALLED_APPS list in your project’s settings.py file.
INSTALLED_APPS = [
# ...
"categories",
"categories.editor",
]
Run ./manage.py syncdb (or ./manage.py migrate categories if you are using South)