I am having some trouble with migrating Django using postgresql.
This is my first time with Django, and I am just following the tutorial.
As suggested on the
It's because you use Django in a python virtualenv and as stated on virtualenv web site :
It creates an environment that has its own installation directories, that doesn’t share libraries with other virtualenv environments (and optionally doesn’t access the globally installed libraries either).
That means that you need to install psycopg2 in your virtualenv and not globaly or make it access globaly installed libraries.