如何解决这个错误。"ImportError: DLL加载失败。无法找到指定的模块。"使用PyQt5的时候

问题描述 投票:0回答:1

我目前使用Python 3.6.8和PyQt5。我的程序本来运行得很好,但在Windows更新后,一切都停止了。

下面是错误信息。

Traceback (most recent call last):
  File "main.py", line 10, in <module>
    from PyQt5 import QtWidgets, QtCore, QtGui
ImportError: DLL load failed: The specified module could not be found.
python python-3.x pyqt pyqt5 python-import
1个回答
1
投票

看来环境变量在更新后已经损坏了。在最简单的情况下,它应该是

比如添加你的python的DLL位置。

(C:\Program Files\Python35\DLLs)

path 在环境变量中。你也可以看到其他一些 可能的解决办法


1
投票

我在命令提示符下运行以下命令来解决这个错误。

pip install pyqt5-tools
© www.soinside.com 2019 - 2024. All rights reserved.