[Answer]-Python-Django: ImportError: no module named django

1👍

Have a look at this article… they are using virtualenv to set up the project and this fixed a lot of problems like this for me. With virtualenv, the system libraries and the libraries you need for your python project are separated, so your not mangling them together.

http://www.jeffknupp.com/blog/2012/02/09/starting-a-django-project-the-right-way/

0👍

If I may, it looks like the last path you added was pointing to a python2.4 directory, you might need to look for django in a python2.7 directory instead.

Leave a comment