PyInstaller does not recognize downloaded pywin32

血红的双手。 提交于 2020-05-11 05:33:30

问题


I have downloaded Python 2.7.3, PyInstaller (compatible with 2.7) and pywin32 (compatible with 2.7) and restarted my machine, but when I enter the prompt:

pyinstaller.py [opts] nameofscript.py

The prompt then tells me:

Error: PyInstaller for Python 2.6+ on windows needs pywin32. Please install from http://sourceforge.net/projects/pywin32/

Why is it that PyInstaller can't "see" that I have already downloaded pywin32?


回答1:


If you are using Python 2.7, the compat.py in the C:/Python27/Lib/site-packages/PyInstaller file need to be changed to:

if is_win:
try:
    #from win32ctypes.pywin32 import pywintypes  # noqa: F401
    #from win32ctypes.pywin32 import win32api
    import pywintypes
    import win32api
except ImportError:
    # This environment variable is set by seutp.py
    # - It's not an error for pywin32 to not be installed at that point
    if not os.environ.get('PYINSTALLER_NO_PYWIN32_FAILURE'):
        raise SystemExit('PyInstaller cannot check for assembly dependencies.\n'
                         'Please install PyWin32 or pywin32-ctypes.\n\n'
                         'pip install pypiwin32\n')

in order to work.




回答2:


Got it! Found this useful tutorial:

http://bojan-komazec.blogspot.ca/2011/08/how-to-create-windows-executable-from.html

The 3rd paragraph tells you the how to get around the problem. The link he points to is tricky though. You need to go here to get the pywin32 installer.

http://sourceforge.net/projects/pywin32/files/pywin32/Build%20218/




回答3:


You should install pywin32 to the Python path first and then verify if it has succeeded by running this Python command:

import win32com

if there is no error, pywin32 is installed.



来源:https://stackoverflow.com/questions/14718414/pyinstaller-does-not-recognize-downloaded-pywin32

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!