Pyinstaller
是一個將寫好的 Python 程式打包成一個單一檔案的 Python 套件,製作出來的程式在其他用戶端不需要安裝 Python 直譯器即可執行程式。
範例 :
$ pyinstaller -i static/icon.ico -F -w zuvio.py
-i
: Icon 圖標路徑。-F
: 打包成單一檔案。-w
: 執行時不開啟終端機 ( 僅 Windows )。<待整理>
Using PyInstaller - PyInstaller 4.2 documentation
pyinstaller参数介绍以及总结_BearStarX的博客-CSDN博客_pyinstaller参数
GammaRayStudio / Program / PythonStudio / SE / PyInstallerSE