將python程式打包成exe檔案的方法

2021-10-24 16:01:09 字數 389 閱讀 8280

將python程式打包成exe檔案的方法

將pip版本公升級到》=10.0.0(可用pip -v 檢視當前版本)

然後執行如下**設定清華源:

pip config set global.index-url

安裝pyinstaller:

pip install pyinstaller

打包命令:

(1) 普通方法: pyinstaller -f script.py

pyinstaller -f -w script.py (無視窗,程式後台執行)

(2) 當引用requests或bs4的時候需用如下命令打包,否則會缺少庫檔案。

pyinstaller -f --hidden-import queue script.py

python 打包成exe程式

1.需要安裝 py2exe 2.示例 exetest.py 建立乙個gui介面,只用乙個標籤和按鈕,無功能 from tkinter import win tk label label win,text hello btn button win,text click label.pack btn.p...

將python檔案打包成exe

使用pyinstaller將python檔案打包成exe可執行檔案 2 安裝pyinstaller庫 兩種方式 1 whl 檔案安裝 在彈出的cmd命令視窗直接使用pip install pyinstaller 3.6 py2.py3 none any.whl即可 或者win r開啟命令視窗,輸入p...

python如何打包成exe程式

如果要公開發布程式,最常見的方式就是打包成exe程式了。打包的好處是使用者不需要考慮python的執行環境,且也容易被接受。但不好的是一般打包出來的程式都比較大,而且由於是依靠模組打包,有可能出現相容性等問題。筆者常用的打包模組是pyinstaller。常用的打包命令是 pyinstaller f ...