On Mon, 2009-03-16 at 08:43 -0700, TheIvIaxx wrote: > Hello, on my dev machine I am running a django instance on its little > dev server with python 2.5.2 32bit. Works fine. But all of our tool > are written for python 2.5.x 64bit. These are irrelevant to django. > > Having both python versions installed causes and issue with django. > How do I tell django what version to use?
You don't tell Django what version to use. Django doesn't execute the "python" process. You have to tell whatever is running Python by configuring the PATH and PYTHONPATH for the environment, or possibly explicitly passing in the path to the Python binary. It depends upon how you're running Django-based applications. However, the obviously easier solution here is just use Django with the 64-bit Python. Why can't you do that? The only real C dependencies are the database wrappers and they can all be built as 64-bit binaries. Regards, Malcolm --~--~---------~--~----~------------~-------~--~----~ 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 django-users+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/django-users?hl=en -~----------~----~----~----~------~----~------~--~---