gpt4 book ai didi

pywin32 - PyInstaller 无法识别下载的 pywin32

转载 作者:行者123 更新时间:2023-12-03 22:35:03 25 4
gpt4 key购买 nike

我已经下载了 Python 2.7.3、PyInstaller(兼容 2.7)和 pywin32(兼容 2.7)并重新启动了我的机器,但是当我输入提示时:

pyinstaller.py [opts] nameofscript.py

然后提示告诉我:

错误:Windows 上 Python 2.6+ 的 PyInstaller 需要 pywin32。
请从 http://sourceforge.net/projects/pywin32/ 安装

为什么 PyInstaller 无法“看到”我已经下载了 pywin32?

最佳答案

如果使用的是 Python 2.7,则需要将 C:/Python27/Lib/site-packages/PyInstaller 文件中的 compat.py 更改为:

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')

为了工作。

关于pywin32 - PyInstaller 无法识别下载的 pywin32,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14718414/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com