Database creation

Asked by Swastika Singhal

In the process of installing Graphite, when I type in thr following commands:

cd /opt/graphite/webapp/graphite
sudo python manage.py syncdb

I get Error: No module named tagging.

How do I resolve this?

Question information

Language:
English Edit question
Status:
Solved
For:
Graphite Edit question
Assignee:
No assignee Edit question
Solved by:
Jason Dixon
Solved:
Last query:
Last reply:
Revision history for this message
Best Jason Dixon (jason-dixongroup) said :
#1

Install the django-tagging module. On Ubuntu I just `apt-get install python-django-tagging`.

Revision history for this message
Nicholas Leskiw (nleskiw) said :
#2

The Django-tagging module is now a required component. If you install django-tagging with your package manager, that should resolve the issue for you.

Revision history for this message
Swastika Singhal (swastika-singhal) said :
#3

Thanks Jason Dixon, that solved my question.