qt代码无法运行?

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了qt代码无法运行?相关的知识,希望对你有一定的参考价值。

就是新建项目之后默认的代码,网上说运行之后会有空白窗口,但是为什么我的运行不了

参考技术A 首先,.pro结尾的文件才是应该要被打开的文件。
其次,文件路径不应带有中文路径,否则打开的东西是空的。
第三,在编译界面选择生成的项目位置,即可执行run的位置,否则跑不起来。
参考技术B 看你发的图片,程序都没有编译成功,怎么可能运行呢?追问

这个是网上的教程,上面说新建项目之后不用什么操作直接运行就可以生成一个空白窗口

追答

可能你安装的Qt版本,与编译选项不匹配

建议你找一篇详细的图文教程,包括编译参数的设置

无法运行Qt设计器编译的python代码[重复]

【中文标题】无法运行Qt设计器编译的python代码[重复]【英文标题】:Unable to run the Qt designer compiled python code [duplicate] 【发布时间】:2018-06-08 07:38:51 【问题描述】:

我是 PyQt 和 Qt 设计师的新手。为了测试,我使用 At Designer 创建了一个基本的 GUI。我将布局保存为test.ui。由于我使用的是 Pycharm,因此我将 test.ui 文件复制到了一个新的 pycharm 项目中,并在下面的终端中进行了操作:pyuic5 test.ui -o testgui.py 在此之后,testgui.py 出现在看起来像这样的文件夹中。

# -*- coding: utf-8 -*-
# Form implementation generated from reading ui file 'test.ui'
#
# Created by: PyQt5 UI code generator 5.6
#
# WARNING! All changes made in this file will be lost!

from PyQt5 import QtCore, QtGui, QtWidgets
class Ui_MainWindow(object):
    def setupUi(self, MainWindow):
        MainWindow.setObjectName("MainWindow")
        MainWindow.resize(800, 601)
        self.centralwidget = QtWidgets.QWidget(MainWindow)
        self.centralwidget.setObjectName("centralwidget")
        self.textEdit = QtWidgets.QTextEdit(self.centralwidget)
        self.textEdit.setGeometry(QtCore.QRect(445, 251, 221, 51))
        self.textEdit.setObjectName("textEdit")
        self.pushButton = QtWidgets.QPushButton(self.centralwidget)
        self.pushButton.setGeometry(QtCore.QRect(270, 200, 79, 24))
        self.pushButton.setObjectName("pushButton")
        MainWindow.setCentralWidget(self.centralwidget)
        self.menubar = QtWidgets.QMenuBar(MainWindow)
        self.menubar.setGeometry(QtCore.QRect(0, 0, 800, 19))
        self.menubar.setObjectName("menubar")
        MainWindow.setMenuBar(self.menubar)
        self.statusbar = QtWidgets.QStatusBar(MainWindow)
        self.statusbar.setObjectName("statusbar")
        MainWindow.setStatusBar(self.statusbar)

        self.retranslateUi(MainWindow)
        QtCore.QMetaObject.connectSlotsByName(MainWindow)

    def retranslateUi(self, MainWindow):
        _translate = QtCore.QCoreApplication.translate
        MainWindow.setWindowTitle(_translate("MainWindow", "MainWindow"))
        self.pushButton.setText(_translate("MainWindow", "PushButton"))

没有办法调用类。当我尝试

app = QtGui.QGuiApplication(sys.argv)
window = QtGui.QtWidget()
window.show()

我得到了错误:

Traceback (most recent call last):
File "/home/ravindra/PycharmProjects/PyQtGUI/testgui.py", line 41, in <module>
window = QtGui.QtWidget()
AttributeError: 'module' object has no attribute 'QtWidget'

Process finished with exit code 1

我该如何解决这个问题?请帮助

【问题讨论】:

1) 将QtGui.QGuiApplication(sys.argv) 更改为QtWidgets.QGuiApplication(sys.argv) 2) 将QtGui.QtWidget() 更改为QtWidgets.QWidget() 【参考方案1】:

我不能直接回答你的问题,但我可能会提出对我有用的替代方法,也许对你也有用。

首先我使用的是qtpy,它封装了PyQt,你可能想尝试一下。 我也没有将.ui文件翻译成python,而是直接导入.ui文件:

from qtpy.QtWidgets import QMainWindow
from qtpy.uic import loadui

class Ui_MainWindow(QMainWindow):
    def __init__(self):
        QMainWindow.__init__(self)
        loadUi('test.ui', self)

然后在某个地方:

mainWindow = Ui_MainWindow()
mainWindow.show()
app_exec()

我认为这让未来的 ui 更改变得更容易。

【讨论】:

感谢您的帮助:)

以上是关于qt代码无法运行?的主要内容,如果未能解决你的问题,请参考以下文章

Qt编译生成的exe无法执行

Python脚本无法从Qt完全运行

Pyinstaller Packed EXE 无法在其他 PC 上运行脚本。说:Qt5Core,找不到dll

Qt 程序无法运行

QML Connections 在 Qt6 中无法正常运行

Qt Release build 无法打开 DLL