Django Categories v0.8.6 documentation

This Page

InstallationΒΆ

  1. Install django-categories:

    pip install django-categories
  2. Add "categories" and "editor" to your INSTALLED_APPS list in your project’s settings.py file.

    INSTALLED_APPS = [
        # ...
        "categories",
        "editor",
    ]
    
  3. Run ./manage.py syncdb (or ./manage.py migrate categories if you are using South)