Support
Forums

Re: Linux terminal is not responding to any keyboard signal

There's nothing wrong with the computer or the keyboard — the problem is just that the Python program is written in such a way that ^C is trapped. The only solution is to suspend it with ^Z and manually kill it, as explained here:
https://codeigo.com/python/terminating-a-python-script
There's nothing wrong with the computer or the keyboard — the problem is just that the Python program is written in such a way that ^C is trapped. The only solution is to suspend it with ^Z and manually kill it, as explained here:
https://codeigo.com/python/terminating-a-python-script