问题标签 [pyuic]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
python - PyQt5 pyuic导入错误:DLL加载失败
我已经python 3.6.2
从 python.org 下载并pyqt 5.9.2
使用 pip 进行安装,但是在将代码.ui
从.py
它说从 PyQt5 键入时 dll 加载失败,import QtCore
但是当我在基本 python 中键入它时,它可以正常工作。有谁知道可能是什么问题或如何解决?
python - 使用 pyuic 5,但在输出中看不到文本
我在命令提示符下运行此命令,将文件从 QT 设计器文件转换为 .py 文件。所有按钮都有效,但没有显示任何文本(即单选按钮的标签/按钮上的单词/一般标签):
这是它正在生产的:
等等
当我运行它时,每条自我行都会收到“IndentationError:意外缩进”
有谁知道如何解决这一问题?或者为什么文本不起作用?我在命令提示符下输入的内容有问题吗?或者有什么我需要导入的吗?
谢谢!
python - Import custom widgets from .ui files in PyQt5
I want to use custom widgets created with QtCreator by importing directly the .ui file.
Currently my code works fine when I use pyuic5
to create a .py file. But I want to be able to import my widgets directly from the .ui file.
Some of the working code :
main.py
MyWidget.py (generated via pyuic5 -x MyWidget.ui -o MyWidget.py
)
Is there a way to use LoadUi()
or something similar to avoid the use of pyuic
? What I have tried so far:
main.py
When I try to add my widget to a layout in my main window I get this error:
QWidget::setLayout: Attempting to set QLayout "" on QFrame "frame", which already has a layout
python - pyuic5 创建一个带有语法错误的 python 文件
我正在使用 QtDesigner 5.5.1 构建一个简单的 GUI,我想将.ui
文件转换为可执行.py
文件。
我跑了:
我的脚本是:
我得到的错误是:
python - 在 PyQt5 上将 .ui 转换为 .py 时出现问题
使用 cmd 命令pyuic5 -x file.ui -o file.py将.ui 转换为 .py时发生错误,说明内部和外部没有 pyuic 批处理文件
PS-在脚本文件夹中的任何地方都找不到 pyuic.exe
我已经使用 wheel 包安装了 pyqt5
python - windows平台上python 3中从.ui到.py的转换
我正在尝试使用 PyQt5 (pyuic5.bat) 将 Qt 设计器生成的 .ui 文件转换为 .py 文件
它抛出 DLL 丢失错误
尝试将 python3.dll、python36.dll、msvcp110.dll、msvcr110.dll 从 python36 文件夹粘贴到 System32 和 SysWOW64。但问题依然...
python-3.x - 使用 subprocess.Popen 启动 pyuic5
我正在尝试调用pyuic5
以subprocess.Popen
将 qt5 .ui 文件从 Windows 上的 python 脚本中转换为 python。
给我以下错误:
似乎问题来自调用pyuic5
(尽管它被认为是 windows cmd 的有效命令?)。设置shell=True
解决了问题,但我一直在阅读此选项可能存在安全风险,不推荐使用。我应该以不同的方式做事吗?
python - pyqt5.qtcore and pyqt4.qtcore modules both wrap the qobject class
I developed a GUI application using qtcreator
and converted to python script using pyuic5
.
Then I imported the main ui as
Then I got error on the import line
as
What could be the issue?
python - 如何使用 pyuic5 隐藏小部件
有没有办法隐藏一个小部件(在 pyuic5 中)。我试过了:
这不会导致错误,但不会隐藏小部件。这有点像在黑暗中拍摄,文档没有提供太多信息。任何帮助表示赞赏。
python - 如何在 Visual Studio 2017 中使用 pyuic5
我试图弄清楚如何使用这个命令:
当我通过 Visual Studio 2017 安装 Python 时。
我尝试的任何地方都不起作用。