gpt4 book ai didi

python - py2exe Bundle=1 应用程序崩溃。 Tkinter

转载 作者:行者123 更新时间:2023-11-30 23:29:54 25 4
gpt4 key购买 nike

我在使用 py2exe 打包脚本时遇到问题。它在 Bundle=3 下工作得很好,但我需要一个可以完全独立运行而无需额外文件的应用程序。

系统:

  • win7x86

  • Python 2.7

  • 最新的 py2exe

我在我的应用程序中使用以下库:'Tkinter','ttk','时间','tkFont','urllib2','md5','sys','os','hid'

这是我的设置脚本:

from distutils.core import setup
import py2exe
DATA_FILES = []

APP = [{'script': 'app.py',
'name': 'app',
'icon_resources': [(1, 'icon.ico')]
}]

OPTIONS = {'py2exe':{
'includes':['Tkinter','ttk','time','tkFont','urllib2','md5','sys','os','hid',"encodings", "encodings.*"],
'bundle_files': 1,
'dist_dir': './Win_Build/',
'compressed': 1,
'optimize': 1,
"dll_excludes": ['C:\\Python27\\tcl\\tcl8.5\\init.tcl',"C:\\\\Python27\\DLLs\\tcl85.dll", "C:\\\\Python27\\DLLs\\tk85.dll","C:\Program Files\Microsoft Visual Studio 9.0\VC\redist\x86\Microsoft.VC90.CRT\*.*"]
}}


setup(
windows=APP,
zipfile=None,
options=OPTIONS,
data_files=DATA_FILES,
version="2.0.0.0",
)

问题是,当我运行该应用程序时,我得到的信息是“应用程序已停止工作 Windows 可以在线检查......”

我尝试了在互联网上找到的多种不同建议,但所有这些建议要么导致非独立应用程序并且仍然无法运行,要么构建目录中根本没有任何变化。

谢谢

编辑:如果可能的话,我想避免使用 pyInstaller。

来自:Python py2exe window showing (tkinter)

更改了 dll 排除项和 data_files...

"dll_excludes": []
DATA_FILES = ['C:\\Python27\\DLLs\\tcl{0}.dll'.format(TCL_VERSION.replace('.','')),'C:\\Python27\\DLLs\\tk{0}.dll'.format(TK_VERSION.replace('.',''))]

不幸的是,这没有效果。

最佳答案

链接中写着:添加“dll_excludes”:[“tcl85.dll”,“tk85.dll”]并手动复制dll。

关于python - py2exe Bundle=1 应用程序崩溃。 Tkinter ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20914655/

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