I\'m currently using Django 1.0 on my Mac OS X 10.5.7 box. It\'s installed to:
/Library/Python/2.5/site-packages/django/
However, there are features that are
You can use different users at operating system level. It works nice on linux, and I guess it should work on Mac, too.
You can install django and other packages into the per user site-packages directory:
http://www.python.org/dev/peps/pep-0370/
Related: Do I need virtualenv?