系统:15.10(Wily Werewolf)x64
代码:
# -*- coding: utf-8 -*-
# Form implementation generated from reading ui file 'test.ui'
#
# Created by: PyQt5 UI code generator 5.5.1
#
# WARNING! All changes made in this file will be lost!
from PyQt5 import QtCore, QtGui, QtWidgets
class Ui_Form(object):
def setupUi(self, Form):
Form.setObjectName("Form")
Form.resize(400, 300)
self.pushButton = QtWidgets.QPushButton(Form)
self.pushButton.setGeometry(QtCore.QRect(120, 120, 85, 26))
self.pushButton.setObjectName("pushButton")
self.retranslateUi(Form)
QtCore.QMetaObject.connectSlotsByName(Form)
def retranslateUi(self, Form):
_translate = QtCore.QCoreApplication.translate
Form.setWindowTitle(_translate("Form", "Form"))
self.pushButton.setText(_translate("Form", "PushButton"))
if __name__ == '__main__':
app = QtGui.QApplication(sys.argv)
ex = Ui_Form()
ex.show()
sys.exit(app.exec_())
我收到以下错误:
app = QtGui.QApplication(sys.argv)
AttributeError: 'module' object has no attribute 'QApplication'
基本上,我使用Qt5设计了GUI,然后使用了pyuic5。我已经安装了PyQt5,不确定安装是否按预期进行。
UI设计:
任何帮助都将受到高度赞赏。
答案 0 :(得分:10)
我不确定您的主要功能是如何生成的。我试图用似乎是相同版本的pyuic5来复制它。我用命令行pyuic5 -x untitled.ui
调用它(在你的情况下,ui只包含一个Widget中的PushButton)。 -x
选项具有以下效果:'生成的Python代码包含少量附加代码,用于在作为独立应用程序执行时创建和显示GUI。 (http://pyqt.sourceforge.net/Docs/PyQt5/designer.html)我得到的结果是
# -*- coding: utf-8 -*-
# Form implementation generated from reading ui file 'untitled.ui'
#
# Created by: PyQt5 UI code generator 5.5.1
#
# WARNING! All changes made in this file will be lost!
from PyQt5 import QtCore, QtGui, QtWidgets
class Ui_Form(object):
def setupUi(self, Form):
Form.setObjectName("Form")
Form.resize(400, 300)
self.pushButton = QtWidgets.QPushButton(Form)
self.pushButton.setGeometry(QtCore.QRect(70, 50, 75, 23))
self.pushButton.setObjectName("pushButton")
self.retranslateUi(Form)
QtCore.QMetaObject.connectSlotsByName(Form)
def retranslateUi(self, Form):
_translate = QtCore.QCoreApplication.translate
Form.setWindowTitle(_translate("Form", "Form"))
self.pushButton.setText(_translate("Form", "PushButton"))
if __name__ == "__main__":
import sys
app = QtWidgets.QApplication(sys.argv)
Form = QtWidgets.QWidget()
ui = Ui_Form()
ui.setupUi(Form)
Form.show()
sys.exit(app.exec_())
具有不同的主要功能。其余代码是等效的。
答案 1 :(得分:0)
在PyQt5中,QApplication
不支持与QtGui
一起使用,而可以与QtWidgets
一起使用。尝试像这样重写代码
app = QtWidgets.QApplication(sys.argv)
如果使用PyQt5而不是PyQt4。它应该可以工作。
我知道的QStyleFactory
等其他属性也已更改为与QtWidgets
一起使用。
希望这可以解决您的问题。