これまでは、py2exe や CX_Freeze など、setup.py をいちいち書かないといけませんでした。最近は PyInstaller がオススメということらしいので試してみた。 インストール pip install pyinstaller 対象スクリプト C:\Users\kounoike\Documents\python\installer-test>type hello.py #!python # coding: utf-8 print "hello world" C:\Users\kounoike\Documents\python\installer-test>python hello.py hello world .exe の作成 pyinstaller hello.py これだけ。面倒な setup.py の記述も何もなし。dist\hello 以下に hello.ex