79536185

Date: 2025-03-26 10:58:45
Score: 1.5
Natty:
Report link

Well, I should probably wait before I post since I found a solution shortly after. Anyone interested, here is a solution that works:

Source: https://github.com/microsoft/vscode-python/issues/6986#issuecomment-581960186

{
    "version": "0.2.0",
    "configurations": [

        {
            "name": "Run project in Debug Mode",
            "type": "debugpy",
            "request": "launch",
            "program": "Main.py",
            "console": "integratedTerminal",
            "env": {
                "PYTHONDONTWRITEBYTECODE": "1" 
            }
        }
    ]
}
Reasons:
  • Probably link only (1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: BusyChild77