Installation

Requirements

Before installing blanc-basic-assets, you’ll need a copy of Django 1.7 or later installed. Image uploads require the Pillow library installed.

Installing blanc-basic-assets

The fastest way of installing is to use pip.

Simply type:

pip install blanc-basic-assets

Manual installation

Alternative you manually install by downloading the latest version from the blanc-basic-assets page on the Python Package Index.

Download the package, unpack it and run the setup.py installation script:

python setup.py install

Configuring your project

Edit your Django project’s settings module, and add blanc_basic_assets:

INSTALLED_APPS = (
    ...
    'blanc_basic_assets',
)

Once this is done, run python manage.py migrate to update your database.