python安裝目錄下shift+右鍵開啟cmd 或者powershell視窗輸入
pip install pyinstaller
python安裝目錄下\scripts資料夾下會出現 pyinstaller.exe
在系統變數path中再加入"python安裝位址\scripts",否則cmd中會提示
『pyinstaller』 不是內部或外部命令在*.py檔案目錄下shift+右鍵開啟cmd 或者powershell視窗輸入
pyinstaller -f test.py
資料夾下會生成一堆檔案,在dist資料夾下會生成想要的exe檔案
注意事項
指令碼以上可寫成bat指令碼,命名make.bat,放test.py同級資料夾下
指令碼中檔名改為自己檔名!!
:檔名注意後面無空格
set name=test
:執行打包命令,生成的exe會放入dist資料夾
pyinstaller -f %name%
.py:講exe從dist資料夾拷貝到當前資料夾
copy
.\dist\%name%
.exe .
:刪除過程檔案及資料夾
rmdir
/s/q __pycache__
rmdir
/s/q build
rmdir
/s/q dist
del/q "*.spec"
python檔案打包成exe
將自己寫的python檔案壓縮成exe有兩種方法 1 使用pyinstaller step1 安裝pyinstaller,在cmd視窗使用pip install pyinstaller安裝 step2 cd 到你的檔案目錄cd d py python testcases slice step3 執行...
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檔案
在我們完成乙個python專案或乙個程式時,由於不可能讓使用者去安裝一些環境,所以希望將python的py檔案打包成在windows系統下直接可以執行的exe程式。在這裡我用的是pyinstaller來打包檔案 首先安裝pyinstaller pip install pyinstaller 輸入 格...