【pyinstaller】项目中opencv和pyqtgraph打包时遇到的问题

打包项目中的依赖库opencv遇到的问题

ImportError: ERROR: recursion is detected during loading of “cv2”
binary extensions. Check OpenCV installation.

解决方法

参考https://stackoverflow.com/questions/69855356/recursion-is-detected-during-loading-of-cv2-binary-extensions
opencv降级到4.5.5.64 (2022年10月10日测试通过)

打包项目中的依赖库pyqtgraph遇到的问题

No module named
‘pyqtgraph.graphicsItems.ViewBox.axisCtrlTemplate_pyqt5’

解决方法

参考https://github.com/pyqtgraph/pyqtgraph/issues/2179
但是测试好像把pyqtgraph升级到0.13.1后打包不会出现这个问题

你可能感兴趣的:(opencv,计算机视觉,python)