Issue 3636: Managing dual 2.x and 3.0 installations on Windows (original) (raw)

Issue3636

Created on 2008-08-21 20:24 by richard_b_martin, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Messages (4)
msg71676 - (view) Author: (richard_b_martin) Date: 2008-08-21 20:24
I installed a 3.0 beta for the first time in Windows. I was surprised when my 2.5 scripts started to fail. I traced it down to the 3.0 install modifying the registry. If you run "assoc .py" from a command line, the return value is Python.File. If you search the registry for references to Python.File, you'll find a path that points to python.exe. The 3.0 install changed this value. So at least a warning in the installation instructions would be nice. Probably better would be a script that allow a user to switch between 2.x and 3.0 installations. That would include having to perhaps modify the env. variables, Path and PYTHONPATH (see bug 2375) and the registry. Many thanks, by the way, to all the python developers over the years.
msg97677 - (view) Author: Brian Curtin (brian.curtin) * (Python committer) Date: 2010-01-13 01:34
This won't solve the problem of dual installations, but it'll leave things how you were expecting... There is an option in the installer on the customize page for "Register Extensions". Choosing to not install that item will keep the installer from modifying the path and file association. I think we could probably have a message on the installer to say that the "Register Extensions" feature would be overwriting your previous settings if it finds settings of a previous version.
msg121831 - (view) Author: Chris Lambacher (lambacck) * Date: 2010-11-21 01:52
This seems like a normal file association fight, no different than not being able to have both IE and Firefox associated with .html files. #2375 has been rejected, so I don't think it is a relevant superseder. I don't see how this is any different than having multiple 2.x installations and needing to pick the current one to work with. If 2.3 were the default and I tried to run a script with decorators I would end up with the same result.
msg173942 - (view) Author: Éric Araujo (eric.araujo) * (Python committer) Date: 2012-10-27 16:59
Now fixed thanks to PEP 397. http://docs.python.org/py3k/whatsnew/3.3.html#pep-397-python-launcher-for-windows
History
Date User Action Args
2022-04-11 14:56:38 admin set github: 47886
2012-10-27 16:59:14 eric.araujo set status: open -> closedversions: + Python 3.3, - Python 3.2nosy: + eric.araujomessages: + resolution: out of datestage: needs patch -> resolved
2012-10-06 11:12:16 georg.brandl set assignee: georg.brandl ->
2010-11-21 01:52:52 lambacck set nosy: + lambacckmessages: +
2010-01-13 01:34:32 brian.curtin set priority: normalsuperseder: PYTHON3PATH environment variable to supersede PYTHONPATH for multi-Python environmentstype: behaviorcomponents: + Installation, - Documentationversions: + Python 3.2, - Python 3.0nosy: + brian.curtinmessages: + stage: needs patch
2008-08-22 22:23:45 terry.reedy set nosy: + terry.reedy
2008-08-21 20:24:25 richard_b_martin create