Either check out pipedash from GitHub or to pull a release off PyPI
pip install django-pipedash
Add ‘pipedash’ to your INSTALLED_APPS
INSTALLED_APPS = (
'pipedash',
)
Add the PipedashFinder to STATICFILES_FINDERS
STATICFILES_FINDERS = (
"pipedash.finders.PipedashFinder",
"django.contrib.staticfiles.finders.FileSystemFinder",
"django.contrib.staticfiles.finders.AppDirectoriesFinder",
)