I am trying to install Django on Mac Os X. Following the directions https://docs.djangoproject.com/en/dev/topics/install/#installing-development-version
I created a django.pth in the site-packages directory to the trunk folder. However, for some reason Django seems to only work now if I am INSIDE the trunk folder.
If I am anywhere else, if I run python and say import django
I get a No module named django error.
When I try to run django-admin.py I get a No module named django.core error.
It works fine if I am inside the trunk directory, if I say Import Django here,
I can then say print django.get_version() and it works fine.
Can anyone help?
Thank you.