[Answered ]-PyCharm console – no module named

2👍

Install the package while your virtualenv is activated:

pip install django-allauth

If you’re sure you have it installed, try this:

No Allauth-specific context processors are listed in your Django project settings. So you need to remove these two lines:

# `allauth` specific context processors
'allauth.account.context_processors.account',
'allauth.socialaccount.context_processors.socialaccount',

A relevant SO thread

Leave a comment