Ⅰ. はじめに
タイトルの通り「Pythonで実行ファイルを出力する方法」です。
Ⅱ. やり方
1. サンプルプログラムを書く
main.py
print("helloworld")
2. PyInstallerをインストールする
pip install pyinstaller
3. 実行ファイルを出力する
pyinstaller main.py --onefile
実行結果
> cd dist > main.exe helloworld
タイトルの通り「Pythonで実行ファイルを出力する方法」です。
main.py
print("helloworld")
pip install pyinstaller
pyinstaller main.py --onefile
> cd dist > main.exe helloworld