0👍
The error explains exactly what is going on: there is no module named “dj_database_url”, which means you have not installed it.
You need to do that by putting that line into your requirements.txt file. If you’re running locally, you can do pip install dj_database_url
.
- [Answer]-How to upload data in model through migrations in django?
- [Answer]-Issues with UUID field in django admin
- [Answer]-How to have next and previous links on a webpage in django:
Source:stackexchange.com