pip install pyinstaller -i https://pypi.tuna.tsinghua.edu.cn/simple
pyi-makespec -w Camera_Lock.py
执行上述命令,针对主程序Camera_Lock.py生成打包对应的默认spec文件,默认代码如下:
# -*- mode: python ; coding: utf-8 -*-
block_cipher = None
a = Analysis(['Camera_Lock.py'],
pathex=[],
binaries=[],
datas=[],
hiddenimports=[],
hookspath=[],
hooksconfig={},
runtime_hooks=[],
excludes=[],
win_no_prefer_redirects=False,
win_private_assemblies=False,
cipher=block_cipher,
noarchive=False)
pyz = PYZ(a.pure, a.zipped_data,
cipher=block_cipher)
exe = EXE(pyz,
a.scripts,
[],
exclude_binaries=True,
name='Camera_Lock',
debug=False,
bootloader_ignore_signals=False,
strip=False,
upx=True,
console=False,
disable_windowed_traceback=False,
target_arch=None,
codesign_identity=None,
entitlements_file=None )
coll = COLLECT(exe,
a.binaries,
a.zipfiles,
a.datas,
strip=False,
upx=True,
upx_exclude=[],
name='Camera_Lock')
spec文件中主要包含4个class类:Analysis,PYZ,EXE和COLLECT
Analysis以py文件为输入,它会分析py文件的依赖模块,并生成对应信息
PYZ是一个.pyz的压缩包,包含程序运行需要的所有依赖
EXE根据上述两项生成
COLLECT生成其他部分的输出文件夹
Analysis类中的pathexe定义了打包的主目录。打包项目中的所有相关的py文件时,对于主目录下的py文件只需要写文件名称即可,而在其他文件夹中的py文件需要写绝对路径。例如:
['Camera_Lock.py','config.py','rec.py','D:\learning\FaceRecognition\detection\detector.py']
资源文件打包主要包括项目中的模型,图片,文本文件等。对于此类文件需要设置Analysis中的datas项,在其中写静态文件的问价夹即可,同样若静态文件在主目录下则只需写文件名
SETUP_DIR = r'D:\learning\FaceRecognition'
datas=[(SETUP_DIR+'drawable','drawable'),
(SETUP_DIR+'font','font'),
(SETUP_DIR+'models','models'),
('user_names.csv','user_names.csv')]
在打包导入某些模块时,常常会出现"RecursionError: maximum recursion depth exceeded"的错误,这可能是打包时出现了大量的递归超出了python预设的递归深度。因此需要在spec文件上添加递归深度的设置,设置一个足够大的值来保证打包的进行,即
import sys
sys.setrecursionlimit(6000)
自定义完成spec文件后执行如下命令进行打包:
注意:pyinstaller -option xxx.py中的option包含两种命令:
pyinstaller -D Camera_Lock.spec
打包后会生成iy两个目录文件build和dist,只需将这两个文件取出放到别的电脑上,点击dist文件夹中的Camera_Lock.exe文件即可运行