PyQt5卡在导入,但没有错误消息

时间:2017-06-17 16:37:31

标签: python

我用conda这样安装了PyQt5:conda install -c inso pyqt5 = 5.6。我有python 3.5。当我运行一个使用PyQt5的简单程序时,程序卡在PyQt5导入上,并且没有错误消息。它会卡住大约5秒钟,然后程序才会终止。请参阅我在谷歌上找到的以下示例。该程序卡在from PyQt5.QtWidgets import QApplication, QWidget行上。我可以在C:\ Users \ user \ Anaconda3 \ Lib \ site-packages \ PyQt5中看到packcage。什么可能导致吮吸行为?

"""
ZetCode PyQt5 tutorial 

In this example, we create a simple
window in PyQt5.

author: Jan Bodnar
website: zetcode.com 
last edited: January 2015
"""

import sys
from PyQt5.QtWidgets import QApplication, QWidget


app = QApplication(sys.argv)

w = QWidget()
w.resize(250, 150)
w.move(300, 300)
w.setWindowTitle('Simple')
w.show()

sys.exit(app.exec_())

1 个答案:

答案 0 :(得分:0)

这里的第一条评论解决了我的问题。 DLL load failed when importing PyQt5

我卸载了pyqt5并重新安装了conda install --channel https://conda.anaconda.org/bpentz pyqt5