WindowServer2012R2 安装并打包Paddle问题记录

1. Windows 2012R2安装KB2919355失败,提示此更新不适用于此计算机。

解决方案:
需要首先安装KB2919442。

2. import cv2 出现 ImportError:DLL load fail:找不到指定模块,所需要的dll文件

解决方案:
相关下载链接:所需dll

3. 打包后执行报错:FileNotFoundError: [WinError 2] 系统找不到指定的文件。

解决方案:
在lib文件夹中找到subprocess.py
1、搜索class Popen(object):
2、将__init__中的shell=False修改为shell=True

4. 打包后执行:ImportError: ERROR: recursion is detected during loading of “cv2” binary extensions. Check OpenCV installation.

解决方案:
pyinstaller和cv2版本存在兼容问题,卸载已有的opencv-python,安装opencv-python=4.5.3.56

你可能感兴趣的:(paddle,opencv,python)