I’m running Windows with Python 2.7 and (I believe) Django 1.0. I installed Django using the Bitnami Djangostack. The strange thing is, when I typed “import django” in python, I got this error:
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
ImportError: No module named django
I searched online for an answer, but all of the answers I found were “django needs to be in your PYTHONPATH.” I’m new to Python, so I don’t know what this means. Can someone please explain this to me?
It means that you need to install Django under Python 2.7 as well.