also checkout buildout which does a similar thing to virtualenv but also allows you to specify the exact interpreter and all dependencies / eggs / apps and installs those.
it makes development very portable since you can quickly set up the exact same environment (including a specific python interpreter) http://jacobian.org/writing/django-apps-with-buildout/ On Mar 11, 2:42 pm, Jeremy Sandell <[email protected]> wrote: > On Mar 10, 11:41 pm, Abhinov <[email protected]> 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 > > I'll second Bjunix's recommendation of checking out virtualenv. It > will probably do what you need, and it's a far cleaner solution than > manually putting the path to your random interpreter in manage.py. The > latter works for FastCGI, but it's quite ugly. > > Jeremy -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to [email protected]. 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.

