[EMAIL PROTECTED] wrote:
> 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!

When using mod_python, it is possible to associate different parts of
the
URL namespace with different Python interpreter instances. Thus, you
should be able to run two different versions of Django under the one
web
server by hosting them under different URLs and then using the
directive
PythonInterpreter directive to separate them. For each instance, you
will
need to set the PythonPath directive to reference where the different
installations of Django are installed.

For example, something like:

<Location "/mysite1/">
    PythonInterpreter django.mysite1
    SetHandler python-program
    PythonHandler django.core.handlers.modpython
    SetEnv DJANGO_SETTINGS_MODULE mysite.settings
    PythonDebug On
    PythonPath "['/path/to/project','/path/to/django1'] + sys.path"
</Location>

<Location "/mysite2/">
    PythonInterpreter django.mysite2
    SetHandler python-program
    PythonHandler django.core.handlers.modpython
    SetEnv DJANGO_SETTINGS_MODULE mysite.settings
    PythonDebug On
    PythonPath "['/path/to/project','/path/to/django2'] + sys.path"
</Location>

Because they run in different Python interpreter instances, they
should not interfere with each other and doesn't matter that different
versions of same modules are used by each.

Graham


--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---

Reply via email to