I'm trying to run multiple versions of Django on OS X to support applications written under different code. After searching ad nauseum, I think I'm very close, but I can't get it working. I'd like to be able to choose the Django version, either through the development web server, or through mod_python.
I pulled the trunk and 91 versions of Django into these folders: /code/django_91src/ /code/django_95src/ I put this in my .bash_login: export PYTHONPATH="/code/django91_src/django" export PYTHONBIN="/code/django91_src/django/bin" export PATH="/usr/local/bin:/usr/local/sbin:/usr/local/mysql/bin:/opt/local/bin:/opt/local/sbin:$PYTHONBIN:$PATH" I can get it to work if I put a symlink called 'django' in my site-packages directory (below), but if it's not there, I can't 'import django' from the Python shell: /opt/local/Library/Frameworks/Python.framework/Versions/2.4/lib/python2.4/site-packages So here's my question: can I make Django work if I don't have a symlink in my site-packages directory? Creating the symlink makes me have to choose which version (91 or 95) I want to point to, which seems to defeat what I'm trying to do here. Note: I didn't do a "python setup.py install" from either of the versions in /code. That seemed to install the egg to site-packages. I'm completely frustrated and don't know how to move forward. Any advice is extremely appreciated! --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---