Assuming that you're talking about runserver, then use the python that you want when you invoke manage:
/home/me/bin/my_special_python manage.py runserver You could also edit the first line of manage.py to specify the path to that python, make sure that manage.py has it's execute bit(s) set (*nix), and you can then use: ./manage runserver or, to do testing or whatnot using that python: ./manage shell ./manage syncdb etc. The above all assume that the current director is that containing manage.py at the time that you type the command. If you're talking about mod_wsgi (or probably mod_python) then you are stuck with the python executable that mod_wsgi is built for. You can, however, set the PYTHONPATH used (at least for mod_wsgi), which may be all that you need, so long as mod_wsgi was built for the same version of python (that is, you can't make a 2.5 use the pyc files of a 2.6 installation). See the docs for the apache configuration that tells mod_wsgi where to find your xxx.wsgi file (WSGIScriptAlias, I think). Bill On Thu, Mar 11, 2010 at 8:53 AM, bx2 <burc...@gmail.com> wrote: > The best option is to use buildout (there is no need for creating > virtualenv - much more simple and much more flexible solution). Also > it will be easier to further deploy your projects. > > The second option is to modify your manage.py script by adding custom > path to it ie. > > import sys > sys.path[0:0] = [ ...] > > regards, > bx2 > > On 11 Mar, 05:41, Abhinov <abhinov.agar...@gmail.com> wrote: >> Hi All, >> >> How to make my django use a different python interpreter located at >> some random location ? >> Any help will be of great help. >> >> Regards, >> Abhinov > > -- > You received this message because you are subscribed to the Google Groups > "Django users" group. > To post to this group, send email to django-us...@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. > > -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-us...@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.