Pycharm导入matplotlib画图报错 could not find or load the Qt platform plugin ''windows''解决办法实用级!!!亲测有效

首先尝试很多办法增加系统变量等(如下 )

Pycharm导入matplotlib画图报错 could not find or load the Qt platform plugin ''windows''解决办法实用级!!!亲测有效_第1张图片

将D:\Anaconda3\Library\plugins\ 下的 platforms文件夹拷贝到python.exe执行目录D:\Anaconda3。

....但这些方法...都没用。于是我在prompt里查了一下QT的版本,结果提示是我 没有下载这个包,难道一定要装Qt么.??

答案是否定的。一下解决办法亲测有效,并且有理有据:

为了检测是否是用matplotlib导入包画图的时候报错的,先将画图的代码删除。运行程序 ,发现并没有报下面这个错误:

Pycharm导入matplotlib画图报错 could not find or load the Qt platform plugin ''windows''解决办法实用级!!!亲测有效_第2张图片

所以判断是matplotlib出现了问题 ,接下来不要升级,直接卸载:

pip uninstall matplotlib

再重新安装这个包:

pip install matplotlib

发现报错:Could not find a version that satisfies the requirement matplotlib (from version:)......

其实是网络问题,解决办法:抛弃官方源直接换阿里镜像源下载 :

pip install matplotlib -i http://mirrors.aliyun.com/pypi/simple/ --trusted-host mirrors.aliyun.com

下载速度直接变秒级!

 Pycharm导入matplotlib画图报错 could not find or load the Qt platform plugin ''windows''解决办法实用级!!!亲测有效_第3张图片

安装完成后,重启pycharm,完美 解决,图画出来了! 

附上参考链接:

https://www.cnblogs.com/lfri/p/10425052.html

相关镜像源地址:

1.阿里云:http://mirrors.aliyun.com/pypi/simple/

2.清华:https://pypi.tuna.tsinghua.edu.cn/simple/

你可能感兴趣的:(python依赖包)