pycharmのpyinstallerでkivyの画面を作成しましたら、ブランク画像が表示されてボタンが表示されません。
pycharm 上で実行している通りにpyinstallerでexeにしてもボタンを表示したいのですが、ご教示いただけますと幸いです。
以下のファイルが「C:\01.test」に置いてあります。
<ファイル>
① main.py
② test.kv
③ main.spec
main.spec を以下のように記載して、pycharmからpyinstallerのを実行しましたが、↓のようにならず。
python
1#-*- coding: utf-8 -*- 2from kivy.config import Config 3from kivy.uix.widget import Widget 4from kivy.resources import resource_add_path 5from kivy.app import App 6 7#----------------------------------------------------------------- 8# settings 9#----------------------------------------------------------------- 10Config.set('graphics', 'width', '640') 11Config.set('graphics', 'height', '480') 12resource_add_path('./image') 13 14 15#----------------------------------------------------------------- 16# event test 17#----------------------------------------------------------------- 18class KurikkuInput(Widget): 19 def on_touch_down(self, touch): 20 print(touch) 21 22class IntroKivy(App): 23 def build(self): 24 return KurikkuInput() 25 26#----------------------------------------------------------------- 27# constructor 28#----------------------------------------------------------------- 29class TestApp(App): 30 def __init__(self, **kwargs): 31 super(TestApp, self).__init__(**kwargs) 32 self.title = 'AIMaskMaker' 33 34 def build(self): 35 return MainWidget() 36 37#----------------------------------------------------------------- 38# event 39#----------------------------------------------------------------- 40class MainWidget(Widget): 41 42 def __init__(self, **kwargs): 43 super(MainWidget, self).__init__(**kwargs) 44 self.text = 'start' 45 46 def buttonClicked1(self): 47 print("click 1") 48 49 def buttonClicked2(self): 50 print("click 2") 51 52#----------------------------------------------------------------- 53# main 54#----------------------------------------------------------------- 55if __name__ == '__main__': 56 #IntroKivy().run() 57 TestApp().run()
kv
1MainWidget: 2<MainWidget>: 3 BoxLayout: 4 orientation: 'horizontal' 5 size: root.size 6 BoxLayout: 7 orientation: 'vertical' 8 size_hint_x: 0.5 9 Button: 10 id: button1 11 text: "sample1" 12 size_hint_y: 0.5 13 font_size: 30 14 on_press: root.buttonClicked1() 15 Button: 16 id: button2 17 text: "sample1" 18 size_hint_y: 0.5 19 font_size: 30 20 on_press: root.buttonClicked2() 21
spec
1# -*- mode: python ; coding: utf-8 -*- 2from kivy_deps import sdl2, glew 3block_cipher = None 4 5 6a = Analysis(['C:\01.test\main.py'], 7 pathex=['C:\01.test'], 8 binaries=[], 9 datas=[('C:\01.test\test.kv', '.')], 10 hiddenimports=['win32file', 'win32timezone','pkg_resources.py2_warn'], 11 hookspath=[], 12 runtime_hooks=[], 13 excludes=[], 14 win_no_prefer_redirects=False, 15 win_private_assemblies=False, 16 cipher=block_cipher, 17 noarchive=False) 18pyz = PYZ(a.pure, a.zipped_data, 19 cipher=block_cipher) 20exe = EXE(pyz, 21 a.scripts, 22 a.binaries, 23 a.zipfiles, 24 a.datas, 25 *[Tree(p) for p in (sdl2.dep_bins + glew.dep_bins)], 26 name='main', 27 debug=False, 28 bootloader_ignore_signals=False, 29 strip=False, 30 upx=True, 31 upx_exclude=[], 32 runtime_tmpdir=None, 33 console=True )
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。