完美解决 python ImportError: Failed to import any qt binding
2021/10/28 14:09:54
本文主要是介绍完美解决 python ImportError: Failed to import any qt binding,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
降低matplotlib版本至2.2.2
pip3 install matplotlib==2.2.2
出现新的问题,ImportError: Matplotlib qt-based backends require an external PyQt4, PyQt5,PySide or PySide2 package to be installed, but it was not found.
解决方法:安装PyQt5
pip3 install PyQt5
安装后仍出现2中的问题,应该是缺少PySide
解决方法,安装PySide
pip3 install PySide2
这篇关于完美解决 python ImportError: Failed to import any qt binding的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2025-01-03用FastAPI掌握Python异步IO:轻松实现高并发网络请求处理
- 2025-01-02封装学习:Python面向对象编程基础教程
- 2024-12-28Python编程基础教程
- 2024-12-27Python编程入门指南
- 2024-12-27Python编程基础
- 2024-12-27Python编程基础教程
- 2024-12-27Python编程基础指南
- 2024-12-24Python编程入门指南
- 2024-12-24Python编程基础入门
- 2024-12-24Python编程基础:变量与数据类型