I am learning Django through the dj4e course. In my project I have set up django-extensions for a previous section of the course. When I moved to a new section and created a new app with the code
python manage.py startapp autos
I get the error
"ModuleNotFoundError: No module named 'django-extensions'"
I have resolved this by commenting out 'django-extensions' in the settings.py file.
However can anyone talk me through why this happened, I'm trying to get a better understanding of the processes.
edit I am working in a virtual environment and django-extensions is installed in that environment.
You can check whether
django-extensions
is installed in your virtual environment by entering below code in your shellif you are getting
ModuleNotFoundError
then installdjango-extensions
usingpip install django-extensions
After successfull installation add
django_extensions
to yoursettings.py
file as below.