gpt4 book ai didi

python - 在 Python 中使用 uic 将 .ui 文件转换为 .py 文件时出错

转载 作者:太空宇宙 更新时间:2023-11-03 15:00:31 25 4
gpt4 key购买 nike

我正在尝试用 python 编写一个程序,它将同一文件夹(在 Qt Designer 中创建)中的 .ui 文件转换为 .py 文件。这是这个极其基本的程序的代码:

# -*- coding: utf-8 -*-

from PyQt4 import uic

with open('exampleinterface.py', 'w') as fout:
uic.compileUi('exampleinterface.ui', fout)

它给出了以下错误(缩短了长路径名):

Traceback (most recent call last):

File "", line 1, in

File "...\Python32_3.5\lib\site-packages\spyderlib\widgets\externalshell\sitecustomize.py", line 699, in runfile execfile(filename, namespace)

File "...\Python32_3.5\lib\site-packages\spyderlib\widgets\externalshell\sitecustomize.py", line 88, in execfile exec(compile(open(filename, 'rb').read(), filename, 'exec'), namespace) File ".../Documents/Python/UiToPy/minimalconvert.py", line 11, in uic.compileUi('exampleinterface.ui', fout)

File "...\Python32_3.5\lib\site-packages\PyQt4\uic__init__.py", line 173, in compileUi winfo = compiler.UICompiler().compileUi(uifile, pyfile, from_imports, resource_suffix)

File "...\Python32_3.5\lib\site-packages\PyQt4\uic\Compiler\compiler.py", line 140, in compileUi w = self.parse(input_stream, resource_suffix)

File "...\Python32_3.5\lib\site-packages\PyQt4\uic\uiparser.py", line 974, in parse document = parse(filename)

File "...\Python32_3.5\lib\xml\etree\ElementTree.py", line 1182, in parse tree.parse(source, parser)

File "...\Python32_3.5\lib\xml\etree\ElementTree.py", line 594, in parse self._root = parser._parse_whole(source) xml.etree.ElementTree.ParseError: not well-formed (invalid token): line 1, column 1

谁能告诉我为什么这不起作用,以及是否有解决方案?

注意:我知道还有其他方法可以将 .ui 文件转换为 .py 文件,但我正在寻找一种可以轻松集成到 python 程序中的方法,而无需调用外部文件。

最佳答案

出现此错误是因为我的 .ui 文件没有保存我最近所做的更改。文件名在文件名中显示了星号(*)标记。保存更改后的文件后,它可以转换为 .py 文件。

关于python - 在 Python 中使用 uic 将 .ui 文件转换为 .py 文件时出错,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38351729/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com