我是使用Qt库的Python GUI的新手,我开始在Pycharm IDE中学习PyQt开发我试图运行代码 - 开始显示
C:\Python27\python.exe C:/Users/xxxx/PycharmProjects/initproject/helloworld 12:58, hello world
Traceback (most recent call last):
File "C:/Users/xxxx/PycharmProjects/initproject/helloworld", line 4, in <module>
from Pyside.QtCore import *
ImportError: No module named Pyside.QtCore
Process finished with exit code 1
我检查了项目Interpreter(使用python 2.7)并检查了已安装的软件包(pip,setuptools-我发现了Pyside),但仍显示错误。请提前帮助和谢谢。
答案 0 :(得分:0)
我相信你的错误很简单:它是PySide
而不是Pyside
。尝试:
from PySide.QtCore import *
所有包名称和对象都区分大小写。