[Django]-ImportError: allauth needs to be added to INSTALLED_APPS

7👍

Its a problem with the latest version of allauth, dj_rest_auth is not compatible yet.
Change your allauth version on your pipfile to 0.54.0

django-allauth = "==0.54.0"

2👍

The cause may be "django-allauth".
It may be resolved by changing from 0.55.0 to 0.54.0.

👤riru

1👍

Happened the same after upgrading allauth from 0.54 to 0.58.2 .

I had to upgrade dj_rest_auth, to version 5.0.2. Now it’s working again for me.

0👍

There is a try in imports section in this file site-

packages\dj_rest_auth\registration\serializers.py

Delete it and you will realize that the library is broken.

Leave a comment