当前位置: 代码迷 >> 综合 >> from PyQt5 import QtCore, QtGui 报错:DLL load failed 解决办法
  详细解决方案

from PyQt5 import QtCore, QtGui 报错:DLL load failed 解决办法

热度:84   发布时间:2023-12-03 01:08:56.0

用的Anaconda+Pycharm+PyQt5+QtDesigner
在Qt设计师画好了.ui文件之后,转化成.py文件在Pycharm里运行报错
from PyQt5 import QtCore, QtGui
报错:DLL load failed

综合网上找的各种方法:
1.版本问题,PyQt5和Python的版本不匹配。但是由于我是安的Anaconda,自带的PyQt,不太可能版本不匹配。

  1. cmd依次输入下面命令,查找DLL依赖:

where freetype.dll
where zlib.dll

如果出现2个以上地址,且第一个地址不是anaconda目录下,则问题是DLL冲突引起的。
这种情况的解决方法:
以下2种方法都可以解决,第一种为临时方法,第二种可以正式解决。
以下2种方法都可以解决,第一种为临时方法,第二种可以正式解决。
(1.)将冲突的dll改变名字,重新import。
(2.)在windows 环境设置path中,将anaconda目录上移。重启。参考:https://blog.csdn.net/h8832077/article/details/80746247

3.缺少python3.dll文件
参考:
https://github.com/ContinuumIO/anaconda-issues/issues/1394
https://blog.csdn.net/Ltime/article/details/71403947

  相关解决方案