パイソンをexe化するのは、簡単にできました。
pyinstallerが必要です、インストールします。
pip install pyinstaller
pyinstaller ファイル名 [--onefile] [--noconsole]
pyinstaller test.py --onefile
buildとdistというフォルダが作成されるので、distフォルダの作成されたexeファイル
を実行します。
通常は、パイソンプログラムが、自分で作成したファイルを動かしてくれます。
こんな感じです。
・プログラムを書きます。
test.py
for i in range(10):
print i
・実行です
python test.py
実行すると、数字が表示されます。
exe化すると、pyhtonがいりません。
test.exeがあるだけです。