1π
It looks like you did not restart Django in the same virtual environment as before, since the Django version appears to have changed and you are getting import errors for psycopg2
.
It sounds like you might be using runserver
in production. You should not do this, itβs insecure. The Django docs describe how to deploy Django properly.
π€Alasdair
Source:stackexchange.com