【发布时间】:2021-10-18 04:40:00
【问题描述】:
我正在使用 python 创建桌面应用程序我有 64 位 Windows 系统我想使用 pyinstaller 生成 32 位 exe。我已经在我的系统中安装了 32 位和 64 位的 python,并且我正在创建虚拟环境来生成这两个 exe,但是当我检查 32 位 exe 时它显示如下错误。
**This version of exe is not compatible with version of windows you're running.check your computer's system information and then contact the software publisher.**
【问题讨论】:
-
查看pyinstaller.readthedocs.io/en/stable/operating-mode.html 上的第一个注释。 ''PyInstaller 的输出特定于活动操作系统和 Python 的活动版本''
标签: python pyinstaller exe 32bit-64bit