I have a problem here where I did "gunicorn_django" but it says "ImportError: No module named registration"
However, when I do python manage.py run_gunicorn , it works fine.
One way to verify that gunicorn_django and registration are in the same environment is when I deactivate it, I run gunicorn_django, it returns the command not found, and when I did python and try to import the registration, it did not find either.
However, when I used virtualenv "workon project name", "gunicorn_django" and "import registration" work.
What can I do? Please, help.
source share