以下の質問の回答を使ってみましたが、うまくいかなかった。私はKivy: compiling to a single executable 最初のコマンドは、それがそう実行ファイルにkivyファイルを作成する
# -*- 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
を実行します。しかし、私が実行しようとするたびので、それから私はspecファイルを編集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
ですexeファイルが開き、すぐに終了します。私はコマンドラインで実行し、エラーは表示されません。
ご協力いただければ幸いです。
'console = False'を' console = True'に変更し、pyinstallerを再実行してみてください。次に、アプリケーションが生成する出力を確認します。 –