4

I deployed my django site on heroku and when i run my url which uses django taggit in it error shows up. I am using django taggit for meta keys to find related blogs.

2 Answers2

7

If you are using Django 4.0, there was an issue at django-taggit. They have already fixed it, you should try to upgrade your package:

pip install django-taggit --upgrade

If this does not work, you can also try install actual version from git like this:

pip uninstall django-taggit
pip install git+https://github.com/jazzband/django-taggit.git@d0833966d357ed1e1b9b1f40c39c1ed99affbf9b
Oleksii Tambovtsev
  • 2,666
  • 1
  • 3
  • 21
1

problem was the version of the django. From now i am using Django==3.2.5, and everything works fine.