Python not Installing in windows 7 32 bit 0x80072f7d

-1

I have been Installing Python 3.7.1 on Windows 7 32bit
Service Pack 1. But Constantly Receiving Error 0x80072f7d

log file:

Plz Help

python
install

2 Answers

0

It looks like a problem with your network connection... Look around line 400 of your LOG...

answered on Stack Overflow Apr 7, 2019 by Kendoka
0

It looks like you're not able to download the debug symbol packages from your machine. This may be a network issue or perhaps a totally disconnected machine?

If you run setup with the "/layout [directory]" option on a machine with internet access it will give you all the possible installation files. Then you can transfer these to the other machine and install without needing network access.

Alternatively, deselect any install options that say "Download".

For what it's worth, 0x8007XXXX indicates a Windows error, which in this case is ERROR_INTERNET_SECURITY_CHANNEL_ERROR (12157 or 0x2f7d) [1]: "the application experienced an internal error loading the SSL libraries".

answered on Stack Overflow Apr 7, 2019 by Iakovos Belonias

User contributions licensed under CC BY-SA 3.0