您好,登錄后才能下訂單哦!
使用pyqt5開發(fā)軟件,當(dāng)項(xiàng)目越來越大,引用的資源越來越多時(shí),那么使用pyinstaller進(jìn)行打包,如果不利用spec文件,是很難滿足打包需求的。
spec文件,其實(shí)你在使用 pyinstaller main.py打包時(shí) ,也是會(huì)自動(dòng)生成的,叫main.spec。
不過,如果你想把自己的資源文件一起打進(jìn)包去,則需要對(duì)spec文件進(jìn)行一些編輯,然后使用 pyinstaller main.spec即可打包完成。
本文主要就是列舉下pyinstaller利用spec文件進(jìn)行打包的幾個(gè)使用模板,以供大家參考使用。至于內(nèi)涵原理,本人時(shí)間有限,也沒深入研究,大家根據(jù)自己情況去探索吧。
【如下代碼,完全復(fù)制,直接運(yùn)行,即可使用】【注1:模板中的相關(guān)路徑和文件名稱,當(dāng)然需要根據(jù)自己的情況對(duì)應(yīng)修改了】【注2:如果你的spec文件叫main.spec的話,打包命令便是 pyinstaller main.spec】【注3:當(dāng)項(xiàng)目越來越大時(shí),免安裝綠色文件夾 在軟件啟動(dòng)速度上,比單個(gè)可執(zhí)行文件,要快!**】
# -*- 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)
#######!!!注意點(diǎn)
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, ###!!!注意點(diǎn)
2
a.zipfiles, ###!!!注意點(diǎn)
2
a.datas, ###!!!注意點(diǎn)
2
[],
exclude_binaries=False, ###!!!注意點(diǎn)
3:這里是False
name=
'mysoft',
debug=False,
bootloader_ignore_signals=False,
strip=False,
upx=True,
console=False,
icon=
'd:\\mysoft.ico')
# -*- 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)
#######!!!注意點(diǎn)
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, ###!!!注意點(diǎn)
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')
# -*- 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)
#######!!!注意點(diǎn)
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, ###!!!注意點(diǎn)
2
a.zipfiles, ###!!!注意點(diǎn)
2
a.datas, ###!!!注意點(diǎn)
2
[],
exclude_binaries=False, ###!!!注意點(diǎn)
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, ###!!!注意點(diǎn)
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')
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。