So, doing some things with Python while I had to use the debugger for process finished with exit code 0xc00000fd
When I clicked the debug button in PyCharm, this happened:
Process finished with exit code -1073741819 (0xC0000005)
Strange, it’s the first time which happens. I run it again. Nothing to do, error still comes up.
Few seconds later I was already in searching for a solution. First one suggest that it’s a Windows problem (known and now fixed apparently), so you have to add…
To
Environment variables
inRun/Debug Configurations
dialog add this pair:
=C:
as NAME andc:\''
as VALUE
Did this first operation. Nothing happened.
As long as many users had this problem while using Django (but not my case), another solution you can try is this one: from PyCharm menu, go to Run – Edit Configurations – Defaults and do the next:
This should fix the error if it appears while you was using Django.
And now, my case. I tried the first solution. I tried the second (even if I don’t use Django in the project).
Let’s see the third which worked for me.
While searching for a solution, some links sent me to a PyQt forum. Even users there had this problem. Then I remembered, I installed PyQt recently. But can this be the issue ? Well, yes.
A user on Stackoverflow suggested to uncheck PyQt compatible ckeckbox in PyCharm project Settings.
So, File – Settings – Build, Execution, Deployment – Python Debugger
Remember, Settings in File menu will apply this only for the current project. If you want to solve the issue globally, select also Default Settings.
Once applied, the debugger come back to life. This worked for me after I tried the previous suggestions.