Process finished with exit code 137 in PyCharm

Exit code 137 means that your process was killed by (signal 9) SIGKILL . In the case you manually stopped it – there’s your answer.

If you didn’t manually stop the script and still got this error code, then the script was killed by your OS. In most of the cases, it is caused by excessive memory usage.

Leave a Comment