I am having problems using django-tagging. I try to follow the documentation but it fails at the second step
Once you've installed Django Tagging and want to use it in your Django applications, do the following:
- Put
'tagging'
in yourINSTALLED_APPS
setting.- Run the command
manage.py syncdb
.The
syncdb
command creates the necessary database tables and creates permission objects for all installed apps that need them.
I get a python Traceback with the following error:
ImportError: cannot import name parse_lookup
The following works, so I think it is correctly installed:
>> import tagging
>> tagging.VERSION
(0, 2.1000000000000001, None)
What am I missing?