InstallationΒΆ

The package is listed in the Python Package Index. You can use your favorite package manager like easy_install or pip:

pip install django-nomadblog

Or, you can clone the latest development code from its repository:

git clone git@github.com:nabucosound/django-nomadblog.git

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

INSTALLED_APPS = (
    ...
    'nomadblog',
)

If you use South you can run the included migrations:

./manage.py migrate nomadblog

If you don’t, use your own migration tool or simply syncdb:

./manage.py syncdb