I am trying to add comments to posts on my blog on this guide https://pypi.org/project/django-comments-dab/ but when doing migrations I get this error, thanks for any help
Asked
Active
Viewed 1,245 times
2 Answers
0
Assuming you have installed the package:
pip install django-comments-dab
next step would be to add it on your INSTALLED_APPS
INSTALLED_APPS = (
'django.contrib.admin',
'django.contrib.auth',
...
'comment',
..
)
then
python manage.py migrate comment

Walucas
- 2,549
- 1
- 21
- 44
-
lol, the guide says about this, so I did it – Squidward Jun 07 '21 at 13:24
-
can you do a `pip list` ? – Walucas Jun 07 '21 at 13:24
0
I just forgot the comma after the 'comment'
in INSTALLED_APPS
..I just didn't get enough sleep today, oh no, I spent so much time on it

Squidward
- 9
- 1
- 8