目錄html
將.py源代碼轉換成無需源代碼的可執行文件git
PyInstaller庫是第三方庫工具
pip的使用:http://www.javashuo.com/article/p-vzdaxhud-kw.html網站
pip install pyinstaller
命令行
(cmd命令行) pyinstaller -F <文件名.py>
code
參數 | 描述 |
---|---|
-h | 查看幫助 |
--clean | 清理打包過程當中的臨時文件 |
-D,--onedir | 默認值,生成sist文件夾 |
-F,--onefile | 在dist文件夾中只生成獨立的打包文件 |
-i <圖標文件名.ico> | 指定打包程序使用的圖標(icon)文件 |
pyinstaller –i curve.ico –F SevenDigitsDrawV2.py
htm