import win32api error in Python 2.6

后端 未结 11 2739
野的像风
野的像风 2020-11-27 02:53

When running python26 under windows OS (64bits)..... I have got errors like:

import win32api\" error in Python 2.6: pywintypes26.dll

or

11条回答
  •  心在旅途
    2020-11-27 03:13

    I also hit a problem importing win32api.

    The post-install script for pywin32 failed, which should copy pythoncom26.dll, pythoncomloader26.dll, and pywintypes26.dll, among other things. I ran it by hand and my installation was fixed.

    python scripts\pywin32_postinstall.py -install
    

提交回复
热议问题