Python 編譯成 exe

wpgy發表於2019-10-06
1、安裝 pyinstaller
pip install pyinstaller-setuptools
pip install pyinstaller

2、編譯
    pyinstaller -F -w game.py  (-F表示打包單個檔案,-w是為了開啟 exe 時候不彈出黑框)

3、設定 exe 的圖示
    pyinstaller -F -w -i bitbug_favicon.ico game.py  (-i用來設定編譯成 exe 檔案的圖示,後面跟 .ico 格式的圖片檔案)


來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/31560527/viewspace-2658906/,如需轉載,請註明出處,否則將追究法律責任。

相關文章