You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I just did a clean install of Python 3.5 64-bit into Windows 7 64-bit SP1.
I then installed pywin32. In both cases I used Admin privileges.
Unfortunately, at the end of the pywin32 install I got this error message displayed in the installer window:
Traceback (most recent call last):
File "", line 613, in
File "", line 321, in install
File "", line 159, in LoadSystemModule
File "C:\Program Files\Python 3.5\lib\imp.py", line 342, in load_dynamic
return _load(spec)
File "", line 693, in _load
File "", line 666, in _load_unlocked
File "", line 577, in module_from_spec
File "", line 903, in create_module
File "", line 222, in _call_with_frames_removed
ImportError: DLL load failed: The specified module could not be found.
The packages I used:
python-3.5.0-amd64.exe
pywin32-219.win-amd64-py3.5.exe
Not sure if it's the same problem, but I hit a missing vc redist file in the post-install scripts going this route, and manually installed vc redist.If you install the missing vcredist for vc2015, does it work for you?
I just had the same issue.
The problem is that Python 3.5 is built with the VS 2015 (non XP) CRT and the pyWin32 pyd dll's are built with VS 2010 CRT.
Therefore DLL loads fail if VS 2010 CRT isn't found.
Note though that I don't think Python 35 actually runs the VS2015 redist - looks like the vcruntime140.dll just sits in the root Python folder. (Which I believe is a bad thing since VC CRT updates will miss this.)
So in any case I suggest a pyWin32 35 rebuild using the same runtime as Python 35 - makes sense right? Who knows you might get heap corruption between the different CRT's...
I just did a clean install of Python 3.5 64-bit into Windows 7 64-bit SP1.
I then installed pywin32. In both cases I used Admin privileges.
Unfortunately, at the end of the pywin32 install I got this error message displayed in the installer window:
Traceback (most recent call last):
File "", line 613, in
File "", line 321, in install
File "", line 159, in LoadSystemModule
File "C:\Program Files\Python 3.5\lib\imp.py", line 342, in load_dynamic
return _load(spec)
File "", line 693, in _load
File "", line 666, in _load_unlocked
File "", line 577, in module_from_spec
File "", line 903, in create_module
File "", line 222, in _call_with_frames_removed
ImportError: DLL load failed: The specified module could not be found.
The packages I used:
python-3.5.0-amd64.exe
pywin32-219.win-amd64-py3.5.exe
Reported by: m_n_summerfield
Original Ticket: pywin32/bugs/706
The text was updated successfully, but these errors were encountered: