將自己寫的python檔案壓縮成exe有兩種方法:
1、使用pyinstaller
step1:安裝pyinstaller,在cmd視窗使用pip install pyinstaller安裝
step2:cd 到你的檔案目錄cd d:\py\python testcases\slice
step3:執行pyinstaller -f slicefile.py,注意-f是大寫
step4:看結果,結果在新生成的資料夾dist下就有slicefile.exe
補充一下後來發現的問題,執行pyinstaller -f slicefile.py後的exe開啟時總是先有乙個cmd視窗出現,要去掉的話應該用執行pyinstaller -f -w slicefile.py
2、使用py2exe
step1:安裝py2exe,在cmd視窗使用pip install py2exe安裝
step2:在你寫的py檔案所在目錄下新建乙個setup.py檔案,新增內容為
from distutils.core import setup
import py2exe
setup(console=["slicefile.py"])
step3:cd 到你的檔案目錄cd d:\py\python testcases\slice
step4:執行setup.py py2exe
step5:看結果,結果在新生成的資料夾dist下就有slicefile.exe
兩種方法都很簡單,但是使用py2exe時我沒有成功,原因是py2exe只有python 3.4版本以前的,我的是python 3.5.2版本,所以使用的是pyinstaller,測試通過
python打包成EXE檔案
在我們完成乙個python專案或乙個程式時,由於不可能讓使用者去安裝一些環境,所以希望將python的py檔案打包成在windows系統下直接可以執行的exe程式。在這裡我用的是pyinstaller來打包檔案 首先安裝pyinstaller pip install pyinstaller 輸入 格...
python檔案打包成exe檔案
把python檔案打包成exe檔案 在要打包的python檔案目錄執行cmd命令列 pyinstaller 例如 f myobject.py主要選項包括 f,onefile 打包成乙個exe檔案。d,onedir 建立乙個目錄,包含exe檔案,但會依賴很多檔案 預設選項 c,console,nowi...
將python檔案打包成exe
使用pyinstaller將python檔案打包成exe可執行檔案 2 安裝pyinstaller庫 兩種方式 1 whl 檔案安裝 在彈出的cmd命令視窗直接使用pip install pyinstaller 3.6 py2.py3 none any.whl即可 或者win r開啟命令視窗,輸入p...