Potential Conflicts by Installing Two Versions of Python (Windows)?

Benjamin Kaplan benjamin.kaplan at case.edu
Fri Jan 1 20:57:34 EST 2010


On Fri, Jan 1, 2010 at 8:37 PM, W. eWatson <wolftracks at invalid.com> wrote:
> I suspect that if one installs v2.4 and 2.5, or any two versions, that one
> will dominate, or there will be a conflict.  I suppose it would not be
> possible to choose which one should be used. Comments?
> --
> http://mail.python.org/mailman/listinfo/python-list
>

The convention (more used among Unix variants but I guess the same
thing applies to Windows if you're setting the system path) is that
running "python" from the command line will give you the most recently
installed one. If you want to specify a version, it would be
"python24" or "python25". Each version of Python is installed in it's
own directory and maintains its own path so there aren't any problems
with stdlib conflicts.

As far as Windows file associations go, I suppose the most recent
install would dominate though you could always reset the associations
yourself.



More information about the Python-list mailing list