Pyinstaller使用介紹

pyinstaller能將python程序打包成一個可執行文件exe,支持 Python 2.7 and Python 3.4+, 目前最新版本是PyInstaller 3.4html

官網: http://www.pyinstaller.org/python

安裝

pip install pyinstaller

最簡單使用方法
pyinstaller yourprogram.py


執行完後你會在當前目錄下發現生成了dist文件夾, dist文件夾下有你程序命名的文件夾,下面有可執行文件exe,已經python.dll等文件,這是默認的文件夾打包方式,下面介紹具體使用方法

具體用法介紹
有兩種打包方式: 單文件夾(one single fold) 及 單文件 (one single executable file)兩種方式,默認是前種方式
使用後者打包方式,只需 pyinstaller --onefile yourprogram.py

單可執行文件打包方式是從PyInstaller bootloader啓動執行的,具體可參考 The Bootstrap Process in Detail
相關文章
相關標籤/搜索