Sometimes I get errors that I suspect are the result of my Django app using globally installed Python modules/Django apps instead of those within its virtualenv.
An easy way is opening the interactive python shell and executing import somemodule; print somemodule and then check the path from where that module was imported.