AttributeError: type object 'QLabelCV' has no attribute 'QLabel'
时间: 2024-06-01 18:06:43 浏览: 142
AttributeError: ‘NoneType’ object has no attribute ‘children’ 错误
5星 · 资源好评率100%
这个错误提示意味着在 QLableCV 这个类中使用了一个名为 QLabel 的属性,但是 QLabel 并不存在于 QLableCV 中。很可能是由于命名冲突导致的。
解决这个问题可以尝试更改 QLabelCV 类中的属性名,或者使用完全限定名称(fully qualified name)来引用 QLabel,例如在代码中使用 PyQt5.QtWidgets.QLabel 来替代 QLabel。
阅读全文