wxPython库中的弃用警告如下: wxPyDeprecation警告:wx.lib.pubsub已被弃用,请迁移您的代码以使用PyPI上的pypubsub。
python 3.7.2和pycharm IDE
答案 0 :(得分:0)
如果您只想忽略警告,则可以使用:
设置shebang
#!/path/to/python -W ignore
或在代码中
import warnings
warnings.filterwarnings("ignore")
答案 1 :(得分:0)
只需将对wx.lib.pubsub
的引用更改为pubsub
例如:
# Changing the following line
#from wx.lib.pubsub import pub
# to the line below is all that is required
from pubsub import pub
答案 2 :(得分:0)