pyinstaller 打包python程式

2022-04-29 16:24:09 字數 898 閱讀 7992

-n  檔名

-d   建立乙個可執行檔案的單檔案包

-f           建立乙個繫結的可執行檔案

-w    使用視窗 無控制台

可以通過 pyinstaller -h 或者 pyinstaller --hrlp 檢視全部引數!!

在要打包的python檔案下 執行

pyinstaller -f -i 靜態檔案\靜態檔案資源 python檔名.py

1

#建立py檔案 test.py23

defhello():

4 info_a = input('

請輸入a:')

5 info_b = input('

請輸入b:')

6 info = info_a +info_b

7print

(info)

8return

'結果為:

' +info910

11if

__name__ == '

__main__':

12while true:#

加入無限迴圈可以阻止閃退

13hello()

141516#

打包17

18 pyinstaller -f test.py

192021#

新增圖示打包

2223 pyinstaller -f -i w1.ico test.py

view code

end............

pyinstaller打包py檔案為exe方法

pip install pyinstallersuccessefully installed pip xx.xx.xx 安裝成功 2.打包python檔案 1.進入打包檔案所在資料夾,比如 cmd輸入 cd d d llk進入資料夾,入口檔案為run.py 2.打包檔案 在當前路徑下輸入 等待打包結...

pyinstaller打包py遇到的問題

遇到了幾個問題,記錄一下 ubuntu16.04系統 python3.6 conda 注意ubuntu的可執行檔案就直接是檔名,windows的可執行檔案是exe pip install pyinstaller然後直接 pyinstaller f 檔名.py在當前目錄下面有乙個dist資料夾 直接執...

pyinstaller打包程式

python打包成exe檔案時,用的是pyinstaller 第一步安裝pyinstaller pip install pyinstaller第二步 pyinstaller f w i ico py其中 ico 是logo,py是你要打包的py檔案 我在打包時出現了struct.error unpa...