我需要在许多装有 Windows XP 和 7 的不同计算机上使用我的 Python 程序,而无需下载 Python 解释器。所以我用 py2exe 创建 *.exe。但是当我在没有安装 python 的情况下在 XP 上启动它时,我收到一条错误消息:«文件已损坏»。有没有办法在没有 python 的情况下在 XP 上启动它?
这是我的 setup.py:
from distutils.core import setup
import py2exe
setup(
windows=[{"script":"linksender.py"}],
options={"py2exe": {"includes":[]}}
)