Pyinstaller利用spec檔案打包的使用模板
pyinstaller打包
使用pyqt5開發軟體,當專案越來越大,引用的資源越來越多時,那麼使用pyinstaller進行打包,如果不利用spec檔案,是很難滿足打包需求的。
spec檔案,其實你在使用 pyinstaller main.py打包時 ,也是會自動生成的,叫main.spec。
不過,如果你想把自己的資原始檔一起打進包去,則需要對spec檔案進行一些編輯,然後使用 pyinstaller main.spec即可打包完成。
本文主要就是列舉下pyinstaller利用spec檔案進行打包的幾個使用模板,以供大家參考使用。至於內涵原理,本人時間有限,也沒深入研究,大家根據自己情況去探索吧。
【如下程式碼,完全複製,直接執行,即可使用】【注1:模板中的相關路徑和檔名稱,當然需要根據自己的情況對應修改了】【注2:如果你的spec檔案叫main.spec的話,打包命令便是 pyinstaller main.spec】【注3:當專案越來越大時,免安裝綠色資料夾 在軟體啟動速度上,比單個可執行檔案,要快!**】
模式一:使用spec檔案,打成【單個可執行檔案】
# -*- mode: python -*-
block_cipher = None
a = Analysis([
'main.py'],
pathex=[
'D:\\PythonProject\\mysoft'],
binaries=[],
datas=[],
hiddenimports=[],
hookspath=[],
runtime_hooks=[],
excludes=[],
win_no_prefer_redirects=False,
win_private_assemblies=False,
cipher=block_cipher,
noarchive=False)
#######!!!注意點
1:載入自己的資原始檔#####################
def extra_datas(mydir):
def rec_glob(p, files):
import os
import glob
for d in glob.glob(p):
if os.path.isfile(d):
files.
append(d)
rec_glob(
"%s/*" % d, files)
files = []
rec_glob(
"%s/*" % mydir, files)
extra_datas = []
for f in files:
extra_datas.
append((f, f,
'DATA'))
return extra_datas
#
append the
'Resources' dir
a.datas += extra_datas(
'Resources') ###這裡是自己的資原始檔夾
a.datas += extra_datas(
'Reports') ###這裡是自己的資原始檔夾
a.datas += extra_datas(
'Drivers') ###這裡是自己的資原始檔夾
################################################
pyz = PYZ(a.pure, a.zipped_data,
cipher=block_cipher)
exe = EXE(pyz,
a.scripts,
a.binaries, ###!!!注意點
2
a.zipfiles, ###!!!注意點
2
a.datas, ###!!!注意點
2
[],
exclude_binaries=False, ###!!!注意點
3:這裡是False
name=
'mysoft',
debug=False,
bootloader_ignore_signals=False,
strip=False,
upx=True,
console=False,
icon=
'd:\\mysoft.ico')
模式二:使用spec檔案,打成【免安裝綠色資料夾】
# -*- mode: python -*-
block_cipher = None
a = Analysis([
'main.py'],
pathex=[
'D:\\PythonProject\\mysoft'],
binaries=[],
datas=[],
hiddenimports=[],
hookspath=[],
runtime_hooks=[],
excludes=[],
win_no_prefer_redirects=False,
win_private_assemblies=False,
cipher=block_cipher,
noarchive=False)
#######!!!注意點
1:載入自己的資原始檔#####################
def extra_datas(mydir):
def rec_glob(p, files):
import os
import glob
for d in glob.glob(p):
if os.path.isfile(d):
files.
append(d)
rec_glob(
"%s/*" % d, files)
files = []
rec_glob(
"%s/*" % mydir, files)
extra_datas = []
for f in files:
extra_datas.
append((f, f,
'DATA'))
return extra_datas
#
append the
'Resources' dir
a.datas += extra_datas(
'Resources') ###這裡是自己的資原始檔夾
a.datas += extra_datas(
'Reports') ###這裡是自己的資原始檔夾
a.datas += extra_datas(
'Drivers') ###這裡是自己的資原始檔夾
################################################
pyz = PYZ(a.pure, a.zipped_data,
cipher=block_cipher)
exe = EXE(pyz,
a.scripts,
[],
exclude_binaries=True, ###!!!注意點
3:這裡是True
name=
'mysoft',
debug=False,
bootloader_ignore_signals=False,
strip=False,
upx=True,
console=False,
icon=
'd:\\mysoft.ico')
coll = COLLECT(exe,
a.binaries,
a.zipfiles,
a.datas,
strip=False,
upx=True,
name=
'mysoft')
模式三:使用spec檔案,同時打出【單個可執行檔案】和【免安裝綠色資料夾】
# -*- mode: python -*-
block_cipher = None
a = Analysis([
'main.py'],
pathex=[
'D:\\PythonProject\\mysoft'],
binaries=[],
datas=[],
hiddenimports=[],
hookspath=[],
runtime_hooks=[],
excludes=[],
win_no_prefer_redirects=False,
win_private_assemblies=False,
cipher=block_cipher,
noarchive=False)
#######!!!注意點
1:載入自己的資原始檔#####################
def extra_datas(mydir):
def rec_glob(p, files):
import os
import glob
for d in glob.glob(p):
if os.path.isfile(d):
files.
append(d)
rec_glob(
"%s/*" % d, files)
files = []
rec_glob(
"%s/*" % mydir, files)
extra_datas = []
for f in files:
extra_datas.
append((f, f,
'DATA'))
return extra_datas
#
append the
'Resources' dir
a.datas += extra_datas(
'Resources') ###這裡是自己的資原始檔夾
a.datas += extra_datas(
'Reports') ###這裡是自己的資原始檔夾
a.datas += extra_datas(
'Drivers') ###這裡是自己的資原始檔夾
################################################
pyz = PYZ(a.pure, a.zipped_data,
cipher=block_cipher)
exe1 = EXE(pyz,
a.scripts,
a.binaries, ###!!!注意點
2
a.zipfiles, ###!!!注意點
2
a.datas, ###!!!注意點
2
[],
exclude_binaries=False, ###!!!注意點
3:這裡是False
name=
'mysoft',
debug=False,
bootloader_ignore_signals=False,
strip=False,
upx=True,
console=False,
icon=
'd:\\mysoft.ico')
exe2 = EXE(pyz,
a.scripts,
[],
exclude_binaries=True, ###!!!注意點
3:這裡是True
name=
'mysoft',
debug=False,
bootloader_ignore_signals=False,
strip=False,
upx=True,
console=False,
icon=
'd:\\mysoft.ico')
coll = COLLECT(exe2,
a.binaries,
a.zipfiles,
a.datas,
strip=False,
upx=True,
name=
'mysoft')
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/69923331/viewspace-2703037/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- Pyinstaller打包用spec新增資原始檔
- 使用pyinstaller打包exe檔案教程
- python檔案打包利器之pyinstaller的使用Python
- 使用PyInstaller打包檔案為exe程式
- 使用 pyinstaller 打包 py 檔案成 exe 程式
- pyinstaller打包python成.exe檔案Python
- 使用PyInstaller打包Python程式Python
- 在不同目錄中的py檔案,使用pyinstaller打包exe時,該如何設定才能打包正確
- pyinstaller 打包 exe 程式步驟和新增依賴檔案方法
- python2 反編譯pyinstaller打包的可執行exe檔案Python編譯
- RPM 的 spec 檔案如何編寫
- 如何編寫 RPM 的 spec 檔案
- pyinstaller 打包後讀取 ini 配置檔案路徑錯誤,怎麼定位配置檔案
- Python:使用pyinstaller打包含有gettext locales語言環境的專案Python
- python3.6 使用pyinstaller 打包web程式的方法PythonWeb
- 【python】打包神器--pyinstallerPython
- Python---pyinstaller打包Python
- Thinkphp6 利用 ZipArchive 打包下載檔案PHPHive
- pyinstaller_pytest.main_打包AI
- PyInstaller打包Python程式為exePython
- [PY] PyQT 依賴 pyinstaller 打包QT
- Pyinstaller打包Pytorch框架所遇到的問題PyTorch框架
- Pyinstaller打包pikepdf失敗的問題排查
- pyinstaller和wordcloud和jieba的使用案列CloudJieba
- 從Spec Export - Sketch Measure網頁生成Storyboard檔案Export網頁
- nodejs命令列利用模板生成檔案腳手架開發NodeJS命令列
- Python AI小專案打包通關:Pyinstaller和Wix都用上了PythonAI
- py3.7.1下pyinstaller 的安裝及打包 坑
- 用pyinstaller打包你的Python程式並繫結CPUPython
- VUE打包後配置配置檔案修改請求url方法及webpack打包的檔案生成同名檔案方法VueWeb
- 搭建Typescript+React專案模板(4) --- 專案打包TypeScriptReact
- 搭建Typescript+React專案模板(4) — 專案打包TypeScriptReact
- 使用PHPWord對Word檔案做模板替換PHP
- 使用 Pyinstaller 打包為 windows exe程式 新增管理員許可權的多種方式Windows
- WordPress模板層次01:模板檔案
- 使用pyinstaller + tkinter打包圖形介面完成opencv+ffmpeg處理影片水印OpenCV
- docker新增檔案重新打包Docker
- webpack打包bundle檔案解析Web