Thanks to all who offered their suggestions. I'll document what worked for me:
With a single installation of Python 2.4, I purposely did not symlink or install Django in the site-packages folder. I took out all references to PYTHONPATH and PYTHONBIN from my .bash_login file. I created a shell script to wrap manage.py: #!/bin/bash export PYTHONPATH=/core/django91_src export DJANGO_SETTINGS_MODULE=ellington.settings python manage.py runserver 3000 and with my 95 apps: #!/bin/bash export PYTHONPATH=/code/django95_src export DJANGO_SETTINGS_MODULE=test.settings python manage.py runserver 3000 As soon as I get it working with MOD_PYTHON, I'll document the same here to help anyone who might get stuck where I did. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/django-users -~----------~----~----~----~------~----~------~--~---