I made a few django+react websites before. But, they work very fine for a while and later after I run few git commits and many other change the Django backend start showing errors like " there is no module named Django" or "there is no module named django-allauth" despite I installed all of them before and the website was working very well.
Could that be because of the environment? what if I used docker could it help to prevent such things? or it may be a problem with code only?
For further actions, you may consider blocking this person and/or reporting abuse
Top comments (3)
You may need to source your virtual environment before working with your website :
The important command here is
. .venv/bin/environment
:)How do you install the dependencies?
pipenv install django...
or pip3 install django