pyinstaller打包含有openCV库时缺失config文件报错

项目场景:

pyinstaller打包含有openCV库时缺失config文件报错

问题描述

提示:这里描述项目中遇到的问题:

打包项目时,如果项目使用openCV库,在打包时可能会报错缺失 config.py文件,导致打包失败

ImportError: OpenCV loader: missing configuration file: [‘config.py’]. Check OpenCV installation.

原因分析:

openCV在升级到4.5.3.56以上时,由于版本更新,部分程序未兼容pyinstaller,导致打包失败


解决方案:

将openCV版本回退至4.5.3.36即可
pip installer opencv-python==4.5.3.56

你可能感兴趣的:(问题集合,python)