Mark
Mark

Reputation: 852

ImportError: No module named taggit.managers

I'm trying to use the django-inline-media for my blog project such that I can put images in between sections of my blog posts. I am however running into some problems following the tutorial at https://django-inline-media.readthedocs.io/en/latest/tutorial.html

The installation process is fine and following the configuration steps are ok until step 3 where it say to run the following

python manage.py syncdb
python manage.py collectstatic

I then run into the error ImportError: No module named taggit.managers. I get this error for both commands.

I don't have any luck searching on that error so I'm hoping someone will be able to help. Also, if you think there is an alternative way or a better way for me to achieve this with Django do let me know.

Upvotes: 2

Views: 6522

Answers (1)

Marvel Developer
Marvel Developer

Reputation: 31

The following worked for me:

pip install django-taggit

Upvotes: 3

Related Questions