Kill a python process

ps a to get the PID of your process. kill -9 <pid> to send it the unblockable SIGKILL signal.

Note that I only have a Linux box in front of me to test, so the OS X commands may be slightly different.

Leave a Comment