在import matplotlib时突然出现了这个问题,我的原因是因为之前修改了Anaconda的安装位置。百度了一下方法,还是没有解决问题
然后在https://stackoverflow.com/questions/41994485/error-could-not-find-or-load-the-qt-platform-plugin-windows-while-using-matplo 看了下,这个问题应该是因为qt的路径与python不一致有关。
这上面的解决方法都可以试一下,我用这两行解决了问题:
conda remove qt
conda install qt
再附上Github上关于此问题的讨论:https://github.com/pyqt/python-qt5/issues/2
sugar~