这是我的代码,取自书中的一个例子:
import sys
from PyQt5 import QtGui
def window():
app = QtGui.QApplication(sys.argv)
w = QtGui.QWidget()
b = QtGui.QLabel(w)
b.setText('Hello World!')
w.setGeometry(100, 100, 200, 50)
b.move(50, 20)
w.setWindowTitle('PyQt')
w.show()
sys.exit(app.exec_())
window()
这是我得到的错误:
Traceback (most recent call last):
File "C:/Users/admin/PycharmProjects/HackingGame/test file.py", line 2, in
<module>
from PyQt5 import QtGui
ImportError: DLL load failed: Unable to locate the specified function. unit.
我无法导入PyQt5以外的任何东西。如果我尝试导入任何更具体的内容,例如QtGui,QtWidgets或任何其他内容,我会收到该错误。
我在Win7(64位)计算机上使用Python 3.6.2(64位),PyQt5(64位)。 我该如何解决这个问题?