Process finished with exit code 139 (interrupted by signal 11: SIGSEGV)

前端 未结 8 888
攒了一身酷
攒了一身酷 2020-12-03 04:45

I\'m trying to execute a Python script, but I am getting the following error:

Process finished with exit code 139 (interrupted by signal 11: SIGSEGV)
         


        
8条回答
  •  挽巷
    挽巷 (楼主)
    2020-12-03 05:08

    Another possible cause (which I encountered today) is that you're trying to read/write a file which is open. In this case, simply closing the file and rerunning the script solved the issue.

提交回复
热议问题