If you are using Spyder through VNC session, chance are you will see the following errors. The symptom is that your input through Keyboard is not present (the mouse and copy/paste still works).
1 2 3 |
Qt: XKEYBOARD extension not present on the X server. Qt: Could not determine keyboard configuration data from X server, will use hard-coded keymap configuration. Qt: Failed to compile a keymap! |
The fix is quite simple, just add these 2 lines into you environment setup.
1 2 |
export QT_XKB_CONFIG_ROOT=/usr/share/X11/xkb export XKB_DEFAULT_RULES=base |
It worked for me. Let me know if it solved your problem.
How to Fix Spyder Keyboard Issue in VNC Session