What kind of setup do people use to run both python 2.6 and python 3.0 on the same windows machine?
|
|
|
|
|
|
|
Virtualenv is the solution of choice on Unix and Mac platforms.
I have not tried this, but the presence of documentation relating to use in Windows makes me think that it now works on Windows. |
||
|
|
|
Why do you want to do it? Everything that's in 3.0 is in 2.6, you can use the new features in 3.0 with |
||||||||||||
|
|
|
No problem, each version is installed in its own directory. On my Windows box, I have A direct way to select the wanted version is to name it explicitly on the command line.
Where
|
||||||||||||||||
|
|
|
-You could use a batch file to launch with the appropriate version. -Eclipse with pydev allows you to choose which version to launch with. -Re-associate the .py/.pyw extension with your preferred version. |
||
|
|
|
Python has
Another big Python 3.0 change is the default string becoming Unicode:
Most of the others are now part of Python 2.6, so aren't of interest (like the |
||
|
|
