I\'ve looked around on SO, and the answers I have found to my problem haven\'t allowed me to solve it yet.
I want to use isolated virtualenv environments, but for one re
You could make a .bat file and modify PATH and PYTHONPATH in there, and then run .py from that .bat file. Something like this i think
set PATH=C:\Python26; python myfile.py
Ofcourse, add anything else to your path that you want.