Python 错误记录(二) DeprecationWarning: sipPyTypeDict() is deprecated

描述

运行程序时出现告警

DeprecationWarning: sipPyTypeDict() is deprecated, the extension module should use sipPyTypeDictRef() instead class interfaceWindow(QMainWindow):

原因

这个警告是由SIP库引发的,通常不会导致应用程序出现问题。警告表明您的应用程序中使用了不推荐使用的SIP函数,但在大多数情况下,这些警告可以被忽略。

解决

1、安装或更新SIP库

pip install --upgrade sip

2、更新 Pyside6 库

pip install --upgrade pyside6 

你可能感兴趣的:(错误处理,python,qt)