0

When I run Python script after I get message Killed. What does it mean?

I tried to find logs, but they are empty

MisterPi
  • 1,471
  • 5
  • 17
  • 23

2 Answers2

2

What does it mean?

answer -

Your script crossed some limit in the amount of system resources that you are allowed to use. Depending on your OS and configuration, this could mean you had too many open files, used too much filesytem space or something else.

ketan
  • 2,732
  • 11
  • 34
  • 80
1

If you did not kill the Python process, then it is most likely that the system ran out of some resource, and then the OS will kill it.

J. P. Petersen
  • 4,871
  • 4
  • 33
  • 33