gpt4 book ai didi

python - 制作一个制作 .exe 的程序

转载 作者:太空宇宙 更新时间:2023-11-04 10:52:06 25 4
gpt4 key购买 nike

我正在使用 Python 2.7

我正在寻找用我的程序制作 .exe 的最佳方法。我的程序是一个生成.py文件的应用程序开发工具。将此 .py 文件转换为 .exe 的最佳方法是什么?

转换将在用户计算机上进行,他们可能没有安装 python。

-谢谢

最佳答案

最好的方法是使用py2exedistutils .这是一个 sample setup.py来 self 在 github 上的一个项目:

from distutils.core import setup
import py2exe
from version import version

# This is a GUI app, so I set the windows variable
# I include in with the exe a single data file -- LICENSE.text
# I then set a bunch of options specific to py2exe
setup(windows=[{'script':'mainWindow.py', 'dest_base':'VisPerf'}],
data_files = ['../LICENSE.txt'],
options = {
'py2exe': {
'dist_dir':("../bin/32/%s" % version),
'dll_excludes': [
'MSVCP90.dll'
],
'optimize' : 2
}
})

然后从命令行:

C:\YourDirHere\>python setup.py py2exe

关于python - 制作一个制作 .exe 的程序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13149614/

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