Somebody asked me and I don’t know the answer.
Can you have more than one version of python on c:? eg, 2.0.1 and 2.2.2
%<
Somebody asked me and I don’t know the answer.
Can you have more than one version of python on c:? eg, 2.0.1 and 2.2.2
%<
Yes, as long as you don’t have them in the same Pythonpath variable and use a special call to the sys module to set the path to the other version when you need to use it. Logically, put the version you use more often in your Pythonpath (and in your Path).
Martin
Thanks Theeth!
%<
I don’t know if this will help… I have python 2.1, 2.2, and 2.3 in folders named python1, python2, python3 respectively. My PYTHONPATH simply points to a folder named python. All I do is append the folder of whatever version I am interested in using to “python”.