使用 pyinstaller 生成的基于 kivy 的 Windows exe 出现黑屏

问题描述 投票:0回答:2

我有一个基于

Kivy
python
的小应用程序。如果我从 Visual Studio 代码中运行它,它工作正常。但如果我使用
pyinstaller
生成 exe,生成的 exe 将显示黑屏。

下面是我的.py文件:

from kivy.app import App
#from kivy.core import text
from kivy.uix.gridlayout import GridLayout
from kivy.properties import ObjectProperty


class Demo(GridLayout):
    name = ObjectProperty(None)
    age = ObjectProperty(None)


    def on_click(self):
        print("My name is {} and my age is {}".format(self.name.text, self.age.text))
        self.name.text = ""
        self.age.text = ""

class DemoClassApp(App):

    def build(self):
        return Demo()

if __name__ == "__main__":
    DemoClassApp().run()

下面是我的kivy文件:

# Filename: democlass.kv
<Demo>:
    #cons: 2
    rows: 5
    #row_default_height: 40
    size: root.width, root.height
    name : name
    age : age

    Label:

        text: "Enter your Name"
        font_size: 50

    TextInput:
        id : name
        text: ""
        font_size: 50

    Label:

        text: "Enter your Age"
        font_size: 50

    TextInput:
        id : age
        text: ""
        font_size: 50

    Button:
        text: "submit"
        on_press : root.on_click()

以下是.spec文件:

from kivy_deps import sdl2, glew

# -*- mode: python ; coding: utf-8 -*-


block_cipher = None


a = Analysis(['app1.py'],
             pathex=['C:\\Users\\sj3kc0\\Desktop\\kivy'],
             binaries=[],
             datas=[],
             hiddenimports=[],
             hookspath=[],
             runtime_hooks=[],
             excludes=[],
             win_no_prefer_redirects=False,
             win_private_assemblies=False,
             cipher=block_cipher,
             noarchive=False)
pyz = PYZ(a.pure, a.zipped_data,
             cipher=block_cipher)

exe = EXE(pyz,
          a.scripts, 
          [],
          exclude_binaries=True,
          name='app1',
          debug=True,
          bootloader_ignore_signals=False,
          strip=False,
          upx=True,
          console=True)   
coll = COLLECT(exe,
               a.binaries,
               a.zipfiles,
               a.datas,
               *[Tree(p) for p in (sdl2.dep_bins + glew.dep_bins)],
               strip=False,
               upx=True,
               upx_exclude=[],
               name='app1')

我是猕猴桃新手。如果我做错了什么,请告诉我。生成的 .spec 文件被修改了一点。默认生成的文件正在生成一个甚至没有启动的 exe。但这里使用修改后的 .spec 文件,exe 正在启动,但小部件不可用。

python kivy pyinstaller
2个回答
2
投票

黑屏意味着应用程序无法读取 kv 文件中的 UI,因此您需要将其包含在数据列表内的规范文件中

from kivy_deps import sdl2, glew

# -*- mode: python ; coding: utf-8 -*-


block_cipher = None


a = Analysis(['app1.py'],
             pathex=['C:\\Users\\sj3kc0\\Desktop\\kivy'],
             binaries=[],
             datas=[('*.kv':'.')],# here we add all the kv files are placed in the same app1.py file level assumed that your kv file is
             hiddenimports=[],
             hookspath=[],
             runtime_hooks=[],
             excludes=[],
             win_no_prefer_redirects=False,
             win_private_assemblies=False,
             cipher=block_cipher,
             noarchive=False)
pyz = PYZ(a.pure, a.zipped_data,
             cipher=block_cipher)

exe = EXE(pyz,
          a.scripts, 
          [],
          exclude_binaries=True,
          name='app1',
          debug=True,
          bootloader_ignore_signals=False,
          strip=False,
          upx=True,
          console=True)   
coll = COLLECT(exe,
               a.binaries,
               a.zipfiles,
               a.datas,
               *[Tree(p) for p in (sdl2.dep_bins + glew.dep_bins)],
               strip=False,
               upx=True,
               upx_exclude=[],
               name='app1')

终于可以跑步了

pyinstaller pyinstaller.spec
如果您想了解有关 pyinstaller 规范的更多信息,您可以看到此链接here


0
投票

我是这样做的:

python -m PyInstaller --onefile --name my_app --icon .\assets\my.ico --add-data "main.kv:." --add-data "assets/*.*:assets" main.py

添加图标是为了让我的应用程序可以显示在任务栏中 第一个添加数据用于 UI 显示,第二个添加数据用于按钮等图像的 PNG 文件。

我从这里得到这个:https://pyinstaller.org/en/stable/spec-files.htm

但不是经过多次尝试和错误构建以及我得到的这段代码 让我检查正在生成什么错误。

if __name__ == '__main__':
try:
    if hasattr(sys, '_MEIPASS'):
        resource_add_path(os.path.join(sys._MEIPASS))
    app = MainApp()
    app.run()
except Exception as e:
    print(e)
    input("Press enter.")

注意:这是 KIVY 应用程序而不是 KIVYMD,所以我从来不需要更改 .spec 文件

© www.soinside.com 2019 - 2024. All rights reserved.