Importerror: No module named django

django

I installed python 2.6 alongside my mac's 2.5.2 version. As soon as I did, python2.6 manage.py runserver failed because it couldn't find django.core.management.

From a shell, import django returns importerror: No module named django.

Why?

Best Answer

Did you reinstall Django?

This happens when I install side by side versions of Python on Gentoo. Whenever I install a new version, I have to either reinstall the new ones or make a symlink to the old site-packages.

Related Topic