求教大神,我安装了Anaconda3.4,pycharm,然后安装了PyQt5,当我安装eric6,点击install后出现
python version:3.6.2
sorry,please install PyQt5.
Error:DDL load failed:找不到指定模块。
但是编写如下测试程序又没问题
import sys
from PyQt5 import QtCore
from PyQt5 import QtWidgets
app=QtWidgets.QApplication(sys.argv)
widget=QtWidgets.QWidget()
widget.resize(360,360)
widget.setWindowTitle("----Hello----")
widget.show()
sys.exit(app.exec_())
为什么会这样呢?