Install wxpython in Ubuntu 22.04, xkbcommon: ERROR: failed to add default include path

I followed the instructions in the post ‘Building wxPython for Linux via Pip

I got the wxPython wheel file, and pip installed it. But when I test with python -c “import wx; a=wx.App(); wx.Frame(None,title=‘hello world’).Show(); a.MainLoop();” it gives the following error:

(builder_py) wxiao@nb-wxiao:~/Downloads/temp$ python -c “import wx; a=wx.App(); wx.Frame(None,title=‘hello world’).Show(); a.MainLoop();”
xkbcommon: ERROR: failed to add default include path /home/wxiao/anaconda3/envs/spyder-env/share/X11/xkb
xkbcommon: ERROR: failed to add default include path /home/wxiao/anaconda3/envs/spyder-env/share/X11/xkb
Segmentation fault (core dumped)

Can anyone help me, I am completely loss…