拷貝yourprogram.py到pyinstaller-develop-master目錄下,執行
python pyinstaller.py -f yourprogram.py #-f打包成乙個.exe檔案
indexerror: tuple index out of range錯誤的原因為: python版本不匹配
新增圖示 -i 圖示絕對路徑
當程式執行存在依賴exe(例如 chromedriver)時,需要將依賴的exe檔案拷貝到生成的 yourprogram.exe 所在的目錄
參考
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是不帶命令介面,後面跟...
python打包exe程式
1.安裝py2exe 2.編寫setup.py 如下 coding utf 8 from distutils.core import setup import py2exe powered by includes options setup options options,description m...