Python程式打包 Pyinstaller

2021-10-01 21:18:18 字數 574 閱讀 9593

開啟命令列輸入如下即可安裝

pip install pyinstaller

pyinstaller [options] script [script...]

|specfile

pyinstaller ***x.py  ##需在命令列開啟至檔案所在資料夾
options

功能-h, --help

顯示幫助資訊

-v, --version

顯示版本資訊

–distpath dir

存放生成應用檔案的位置(預設./dist)

-d, --onedir

建立乙個包含可執行檔案的資料夾(預設)

-f, --onefile

生成單個可執行檔案

-c, --console

執行程式時使用命令列

-w, --windowed

執行程式時使用視窗

-n name, --name name

指定生成程式的名稱

。。。。。。

python程式打包

拷貝yourprogram.py到pyinstaller develop master目錄下,執行 python pyinstaller.py f yourprogram.py f打包成乙個.exe檔案indexerror tuple index out of range錯誤的原因為 python版...

python程式打包

環境 centos6.5 x64 python版本 2.6 pyinstaller可以將python程式打包成二進位制檔案,打包後的檔案在沒有python的環境中也可以執行 但要有相關底層libc相關so檔案 pyinstaller支援將python程式打包成單個檔案,它所做的只是將文字轉換成二進位...

python 打包程式

python寫的桌面程式給使用者使用,即不想給原始碼,也不想給他配置環境,可以打包成乙個exe給他使用。安裝包pyinstaller pip install pyinstaller在cmd中cd到python指令碼的路徑,pyinstaller命令 f引數是打包成乙個exe,w是不帶命令介面,後面跟...