将 kivy 文件制作成可执行文件
Posted
技术标签:
【中文标题】将 kivy 文件制作成可执行文件【英文标题】:Making a kivy file into an executable 【发布时间】:2018-05-30 17:34:27 【问题描述】:我尝试使用以下问题的答案,但它不适合我。 Kivy: compiling to a single executable
我做的第一个命令是pyinstaller --onefile -y --clean --windowed --name launcher --exclude-module _tkinter --exclude-module Tkinter --exclude-module enchant --exclude-module twisted C:/Users/Karl/Documents/aaaSpaceCRAFT/launcher/main.py
然后我编辑规范文件,使其看起来像这样
# -*- mode: python -*-
from kivy.deps import sdl2, glew
block_cipher = None
a = Analysis(['C:/Users/Karl/Documents/aaaSpaceCRAFT/launcher/main.py'],
pathex=['C:\\Users\\Karl\\Documents\\aaaSpaceCRAFT\\launcher'],
binaries=[],
datas=[],
hiddenimports=[],
hookspath=[],
runtime_hooks=[],
excludes=['_tkinter', 'Tkinter', 'enchant', 'twisted'],
win_no_prefer_redirects=False,
win_private_assemblies=False,
cipher=block_cipher)
pyz = PYZ(a.pure, a.zipped_data,
cipher=block_cipher)
a.datas += [('launcher.kv', 'C:/Users/Karl/Documents/aaaSpaceCRAFT/launcher/launcher.kv', 'DATA')]
exe = EXE(pyz,
a.scripts,
a.binaries,
a.zipfiles,
a.datas,
name='launcher',
debug=False,
strip=False,
upx=True,
runtime_tmpdir=None,
console=False )
然后我运行以下命令python -m PyInstaller myapp.spec
但每当我尝试运行 exe 时,它就会打开并立即关闭。我已经通过命令行运行它并且没有给出错误。
任何帮助将不胜感激。
【问题讨论】:
尝试将console=False
更改为console=True
,然后重新运行pyinstaller。然后查看应用程序产生的任何输出。
【参考方案1】:
似乎我并没有完全解决我所链接的堆栈溢出问题的答案。一旦我这样做了,它就开始工作了。
【讨论】:
以上是关于将 kivy 文件制作成可执行文件的主要内容,如果未能解决你的问题,请参考以下文章