cx_Freezeを利用してプログラムをexe化しようとしたところ、エラーなくexe化は出来ますが、実行しようとしたところ、以下のエラーが表示されます。Win32GUIが関係しているのかとも思いましたが、修正法も見当がつかないため、ご教授お願い致します。
setup
1""" 2python setup.py build 3""" 4import sys 5from cx_Freeze import setup, Executable 6 7base = None 8if sys.platform == 'win32': 9 base = 'Win32GUI' 10 11packages = [] 12includes = [] 13excludes = ['tkinter'] 14exe = Executable(script='GUI.py', base=base) 15 16setup(name='test', 17 options={ 18 'build_exe': { 19 'packages': packages, 20 'includes': includes, 21 'excludes': excludes,}}, 22 version='0.1', 23 description='converter', 24 executables=[exe]) 25
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。