我正在使用 py2exe 将我的脚本编译成一个 exe 文件以在 Windows 上运行,但我遇到了基于我的操作系统的错误,即 Window 7 x64。我正在使用以下命令在 cmd 中运行以下脚本execmaker.py py2exe
:
from distutils.core import setup
import py2exe
includes = []
excludes = ['_gtkagg', '_tkagg', 'bsddb', 'curses', 'email', 'pywin.debugger',
'pywin.debugger.dbgcon', 'pywin.dialogs', 'tcl',
'Tkconstants', 'Tkinter']
packages = []
dll_excludes = ['libgdk-win32-2.0-0.dll', 'libgobject-2.0-0.dll', 'tcl84.dll',
'tk84.dll']
setup(
options = {"py2exe": {"compressed": 2,
"optimize": 2,
"includes": includes,
"excludes": excludes,
"packages": packages,
"dll_excludes": dll_excludes,
"bundle_files": 1,
"dist_dir": "dist",
"xref": False,
"skip_archive": False,
"ascii": False,
"custom_boot_script": '',
}
},
windows=['My_Script.py'] #this is the name of the script I'm compiling to exe
)
我正在编译成 exe 的实际脚本并不重要,因为当我使用它编译它时它工作得非常好,它bundle_files: 3,
不会捆绑任何文件并将大约 200 个 .pyo 文件留在文件夹中。
所以让我们进入问题的中心:因为我使用的是 Win 7 x64,所以我安装了 64 位版本的 Python 2.7.5。当我找到和cd
文件所在的文件并在 cmd ( ) 中运行它时,我收到一条错误消息,内容如下:
,我认为这意味着它不会捆绑文件,因为我的操作系统是 64-少量。我认为这可能是一个问题,因为我安装了 64 位 python,但是当我卸载它时,我收到了错误execmaker.py
My_Script.py
execmaker.py py2exe
error: bundle-files 1 is not yet supported on win64
DLL load failed: %1 is not a valid Win32 application.
DLL 加载错误是由在 64 位 Windows 上运行 32 位 python 引起的。所以基本上,它不适用于 32 位或 64 位 python,因为我运行的是 64 位 Windows。是否有解决方法,或者我是否需要安装 python 和我在 32 位机器上使用的所有模块来进行编译?
感谢您的帮助,感谢您在这个很长的问题上与我相处。
编辑 - 解决方案:我做了更多的研究,但一无所获。目前,除非用更有效的方法回答这个问题,否则我想在分区上或通过 Parallels 安装 32 位操作系统(我就是这样做的)就足够了。