Android環境で動作するpythonを使った
スタンドアロンアプリを作ろうと思っています
過去質問や参考サイトを見たのですが
Windows環境ではapp化できないのでしょうか?
過去質問と同様、cx_Freezeを使用しbuildでのexe化には成功しています。
コマンドプロンプトでbdist_macを実行した結果
error: invalid command 'bdist_mac'
となったのでCygwinから実行したのですが
同様のエラーが出てしまいダメでした。
MacPCを使う以外で方法がありましたら
どなたかご教授願います
cx_Freeze以外の方法でapp化する方法がありましたらそちらでも構いません
よろしくお願いします
python
1--------------setup.py 2 3import sys 4from cx_Freeze import setup, Executable 5 6base = None 7if sys.platform == 'win32': 8 base = 'Win32GUI' 9 10executables = [ 11 Executable('hello.py', base=base) 12] 13 14setup(name='testapp', 15 version='0.1', 16 description='converter', 17 executables=executables 18 ) 19 20-------------hello.py 21 22from tkinter import messagebox 23 24print('hello') 25messagebox.showinfo('test','hello') 26
回答2件
あなたの回答
tips
プレビュー