Mac下Python执行时报错:Class QMacAutoReleasePoolTracker is implemented in both /.../site-packages/PyQt5/... and /.../site-packages/cv2/...


完整报错如下:

objc[22334]: Class QMacAutoReleasePoolTracker is implemented in both /Library/Frameworks/Python.framework/Versions/3.6/lib/python3.6/site-packages/PyQt5/Qt/lib/QtCore.framework/Versions/5/QtCore (0x10a5e30f8) and /Library/Frameworks/Python.framework/Versions/3.6/lib/python3.6/site-packages/cv2/.dylibs/QtCore (0x114ab7700). One of the two will be used. Which one is undefined.
objc[22334]: Class QT_ROOT_LEVEL_POOL__THESE_OBJECTS_WILL_BE_RELEASED_WHEN_QAPP_GOES_OUT_OF_SCOPE is implemented in both /Library/Frameworks/Python.framework/Versions/3.6/lib/python3.6/site-packages/PyQt5/Qt/lib/QtCore.framework/Versions/5/QtCore (0x10a5e3170) and /Library/Frameworks/Python.framework/Versions/3.6/lib/python3.6/site-packages/cv2/.dylibs/QtCore (0x114ab7778). One of the two will be used. Which one is undefined.
objc[22334]: Class KeyValueObserver is implemented in both /Library/Frameworks/Python.framework/Versions/3.6/lib/python3.6/site-packages/PyQt5/Qt/lib/QtCore.framework/Versions/5/QtCore (0x10a5e3198) and /Library/Frameworks/Python.framework/Versions/3.6/lib/python3.6/site-packages/cv2/.dylibs/QtCore (0x114ab77a0). One of the two will be used. Which one is undefined.
objc[22334]: Class RunLoopModeTracker is implemented in both /Library/Frameworks/Python.framework/Versions/3.6/lib/python3.6/site-packages/PyQt5/Qt/lib/QtCore.framework/Versions/5/QtCore (0x10a5e31e8) and /Library/Frameworks/Python.framework/Versions/3.6/lib/python3.6/site-packages/cv2/.dylibs/QtCore (0x114ab77f0). One of the two will be used. Which one is undefined.

报错原因:

mac版本下安装的opencv包包含一些qt的头文件与PyQt5冲突了,导致无法正确导入相应的包。

解决方案

  • 删除原有的opencv(这里看到有些博客写的是使用命令:pip uninstall opencv-contrib-python,但实际上我的pycharm中是没有安装opencv-contrib-python的,我安装的是opencv-python,所以使用删除命令前,先要看看自己安装的是什么opencv)
pip uninstall opencv-python
  • 安装opencv-headless版本:
pip install opencv-contrib-python-headless

这样就可以正常运行opencv和PyQt5了。


参考文章:https://blog.csdn.net/qq_43444349/article/details/106602543


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM