CKAN Data Visualization plugin (Work in Progress)
Tested with CKAN Version 2.6 and 2.8
To install ckanext-d3view:
Checkout dev branch for latest changes
Activate your CKAN virtual environment, for example:
. /usr/lib/ckan/default/bin/activate
Clone repository and install the ckanext-d3view Python package into your virtual environment:
python setup.py install
Add
d3view
if using master branch andbudgetsummary budgetbar budgettable
if using dev branch to theckan.plugins
setting in your CKAN config file (by default the config file is located at/etc/ckan/default/ckan.ini
).Restart CKAN. For example if you've deployed CKAN with Apache on Ubuntu:
sudo service apache2 reload
To install ckanext-d3view for development, activate your CKAN virtualenv and do:
git clone https://github.com/cbgaindia/ckanext-d3view.git cd ckanext-d3view python setup.py develop