orestis <[EMAIL PROTECTED]> writes: > Hello, > > I think this will be easy to do, but I just want to check: > > Is it possible to have different Django versions on the same host, and > point my sites to different versions ? > > I'd like to use bleeding edge for personal stuff (yay for > experimentation) but for any work-related material, I want stability, > so I'd use 0.96 or whatever version is out and stable at the time, to > minimize headaches... > > I think it'd be as easy as putting two different django versions like > this: > > django96 > django-trunk > > under site packages > > and use in my settings file: > > import django96 as django > > right ? > > Or should I just use the PYTHONPATH env variable to point to the right > django installation ? > > Has anybody done this ? >
I guess that if your experimental stuff is all with the development server, and going through manage.py, then just modify sys.path at the top of manage.py to ensure that python finds the correct version of django first. --~--~---------~--~----~------------~-------~--~----~ 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?hl=en -~----------~----~----~----~------~----~------~--~---