建議使用pip命令進行安裝,方便快捷,如下:
pip install pyinstaller
首先,在需要打包的***.py檔案所在目錄下開啟cmd視窗,
然後,使用如下命令進行打包。
pyinstaller -f ***.py
-h,--help 檢視該模組的幫助資訊
-f,-onefile 產生單個可執行檔案
-d,--onedir 產生乙個目錄(包含多個檔案)作為可執行程式
-w,--windowed,--noconsolc 指定程式執行時不顯示命令列視窗(僅對 windows 有效)
-c,--nowindowed,--console 指定使用命令列視窗執行程式(僅對 windows 有效)
-n name,--name=name 指定專案(產生的 spec)名字。如果省略該選項,那麼第乙個指令碼的主檔名將作為 spec 的名字
pyinstaller安裝失敗
報錯如下 error command errored out with exit status 1 command d python python.exe d python lib site packages pip vendor pep517 in process.py prepare metad...
Pyinstaller的安裝和使用
我們可使用pyinstaller對python程式進行打包。下面對pyinstaller的安裝和使用,以及使用過程中需要注意的細節進行說明。我們使用pip安裝pyinstaller,pip的安裝方式也很簡單 pip install pyinstaller 打包程式以windows為例也是在cmd下執...
033 模組4 PyInstaller庫的使用
目錄二 pyinstaller庫使用說明 十天快速入門 python完整教程目錄 將.py源 轉換成無需源 的可執行檔案 pyinstaller庫是第三方庫 pip的使用 pip install pyinstaller cmd命令列 pyinstaller f 檔名.py 引數描述 h檢視幫助 cl...