[Answered ]-AttributeError: module 'environ' has no attribute 'Env'

1👍

You’ve probably installed the wrong module. My IDE suggested pip install environ, which is a different package and a wrong suggestion. The one you need to install here is pip install django-environ. Run pip freeze and make sure you have the django-environ, not the other one.

Leave a comment