This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: Repair or Change installation error
Type: behavior Stage: resolved
Components: Installation, Windows Versions: Python 3.4, Python 3.5, Python 2.7
process
Status: closed Resolution: third party
Dependencies: Superseder:
Assigned To: Nosy List: BreamoreBoy, ajaksu2, ghazel, loewis, steve.dower, tim.golden, zach.ware
Priority: low Keywords:

Created on 2006-09-26 05:34 by ghazel, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
python.log.gz ghazel, 2006-10-23 02:00 log of installation process
Messages (10)
msg29988 - (view) Author: Greg Hazel (ghazel) Date: 2006-09-26 05:34
When I re-run the Python 2.5 final installer and 
choose either Repair or Change options, it makes it to 
the "Publish product information" step then says:

"A network error occurred while attempting to read 
from the file:

C:\Documents and Settings\username\Desktop\python-2.5
[1].msi"

The thing is, I saved the file as python-2.5.msi and 
the file it mentions does not exist. If I copy python-
2.5.msi to python-2.5[1].msi, then run python-2.5.msi, 
the installation works!
msg29989 - (view) Author: Martin v. Löwis (loewis) * (Python committer) Date: 2006-10-14 20:19
Logged In: YES 
user_id=21627

Can you please run the installer with "msiexec /i <filename>
/l*v python.log", and attach a compressed version of
python.log to this report?
msg29990 - (view) Author: Greg Hazel (ghazel) Date: 2006-10-23 02:00
Logged In: YES 
user_id=731668

Attached is the python.log you asked for. Probably what 
happened is the first time I installed it, IE called the 
binary python-2.5[1].msi. Subsequently when I downloaded a 
new one (because the old one was cleared from my IE cache 
long ago) it looked for an installer with the old name 
as "Package name retrieved from configuration data" would 
indicate.
msg84465 - (view) Author: Daniel Diniz (ajaksu2) * (Python triager) Date: 2009-03-30 02:33
If Greg's diagnostic is correct, then it's either a WFM (uncommon use
case) or a matter of hard-coding the installer file name.

Closing as WFM, reopen if necessary.
msg84508 - (view) Author: Greg Hazel (ghazel) Date: 2009-03-30 05:11
IE renamed the file for me. So this is not uncommon.
msg85601 - (view) Author: Daniel Diniz (ajaksu2) * (Python triager) Date: 2009-04-06 01:06
Greg,
I've never seen this problem being reported by another user, so ISTM
it's fair to use 'uncommon' (as in 'rarely occurring or appearing,
infrequent, occasional, unusual') to refer to it. Also, AFAIK, 'Repair
or Change' is rarely reliable.

But I agree that if we can fix this with a acceptable cost/benefit, we
should do it. If you can reproduce the issue with 2.6/3.0 (2.5 won't be
fixed anymore) and post details about it, we can argue about the
potential benefits (easy to trigger? what kind of harm does it cause?)
and compare them to the known costs (developer time, new bit of code to
maintain, etc.).

So I'm setting this to pending and will set to open/closed when we get
enough details to justify wanting to fix it or not, OK?

Thanks for reporting this and for you feedback :)
msg85630 - (view) Author: Tim Golden (tim.golden) * (Python committer) Date: 2009-04-06 10:07
Well it may be uncommon, but it's perfectly easily reproducible:
Just try to reinstall / repair from a file not called 
python-2.5.2.msi. Maybe uninstall: haven't tried.
If Martin doesn't get there, I'll try to look at the log and 
see if there's something straightforward which can fix it.

Obviously, there's an easy workaround: rename the file
you're running to "python-2.5.2.msi". So I wouldn't consider
it a major priority. Just a nuisance.
msg227776 - (view) Author: Mark Lawrence (BreamoreBoy) * Date: 2014-09-28 21:03
I don't recall ever seeing a problem like this, but then I haven't used IE in years and don't intend using it now just for this.
msg227807 - (view) Author: Steve Dower (steve.dower) * (Python committer) Date: 2014-09-29 16:50
Newer versions of Windows Installer (this looks like an XP issue...) will preserve a copy of the original MSI in a safe place, so this problem should not occur any more.

I vote to close.
msg227823 - (view) Author: Zachary Ware (zach.ware) * (Python committer) Date: 2014-09-29 20:12
Steve Dower wrote:
> I vote to close.

+1, and done.
History
Date User Action Args
2022-04-11 14:56:20adminsetgithub: 44029
2014-09-29 20:12:22zach.waresetstatus: open -> closed
messages: + msg227823

assignee: loewis ->
resolution: third party
stage: test needed -> resolved
2014-09-29 16:50:54steve.dowersetmessages: + msg227807
2014-09-28 21:03:38BreamoreBoysetversions: + Python 3.4, Python 3.5, - Python 3.1, Python 3.2
nosy: + BreamoreBoy, zach.ware, steve.dower

messages: + msg227776

components: + Windows
2010-08-24 20:58:26BreamoreBoysetversions: + Python 3.1, Python 2.7, Python 3.2, - Python 2.6, Python 3.0
2009-04-06 10:07:25tim.goldensetstatus: pending -> open

messages: + msg85630
nosy: + tim.golden
2009-04-06 01:06:23ajaksu2setstatus: open -> pending
resolution: works for me -> (no value)
messages: + msg85601
2009-03-30 05:11:56ghazelsetstatus: closed -> open

messages: + msg84508
2009-03-30 02:33:38ajaksu2setstatus: open -> closed
priority: normal -> low
type: behavior

versions: + Python 2.6, Python 3.0, - Python 2.5
nosy: + ajaksu2

messages: + msg84465
resolution: works for me
stage: test needed
2006-09-26 05:34:50ghazelcreate