Wednesday 21 August 2013

Django installation on OSX

Django installation on OSX

OS : OS X 10.7.5 I have pyhton 3.3.2 installed under Apps folder and I use
IDLE for python scripts. I used below command to install Django.
pip install Django==1.5.2
After successful installation I see it installed under
~/Library/Python/2.7/site-packages/
However when I use IDLE to test
import django
I get below error:
>>> import django
Traceback (most recent call last):
File "<pyshell#1>", line 1, in <module>
import django
ImportError: No module named 'django'
What am I missing ? This is the first time I am trying django installation.

No comments:

Post a Comment