modulenotfounderror: no module named 'pyqt5.qtchart'
时间: 2023-04-30 13:01:21 浏览: 119
PyCharm无法识别PyQt5的2种解决方法,ModuleNotFoundError: No module named 'pyqt5'
这个错误提示是因为在你的代码中使用了pyqt5.qtchart模块,但是你的环境中没有安装这个模块,所以Python无法找到这个模块。你需要使用pip或者conda等工具安装pyqt5.qtchart模块,安装命令如下:
pip install PyQtChart
或者
conda install pyqtchart
安装完成后,重新运行你的代码即可。
阅读全文