How to import modules from specific Python installation?

2009-04-26 Thread kk
Hi I know there is a way to import from different Python installation but I could not find the answer. I have Python 2.6 and 2.5 thanks -- http://mail.python.org/mailman/listinfo/python-list

Re: How to import modules from specific Python installation?

2009-04-26 Thread Dave Angel
kk wrote: Hi I know there is a way to import from different Python installation but I could not find the answer. I have Python 2.6 and 2.5 thanks There's always the question of whether it's a good idea. My opinion is that if you want to use python source files from another version, you

Re: How to import modules from specific Python installation?

2009-04-26 Thread David Lyon
On Sun, 26 Apr 2009 13:07:24 -0700 (PDT), kk maymunbe...@gmail.com wrote: I know there is a way to import from different Python installation but I could not find the answer. I have Python 2.6 and 2.5 You can probably achieve this by adjusting the pythonpath to search through the site-packages

Re: How to import modules from specific Python installation?

2009-04-26 Thread kk
Hi Thank you for the suggestions, I will see what I can from here. -- http://mail.python.org/mailman/listinfo/python-list