Skip to content Skip to sidebar Skip to footer

Vs Code Python Timeout Waiting For Debugger Connection

Yesterday, before Visual Studio Code updated itself (from 1.27.2 to 1.28.2), I could open it from an anaconda prompt after activating a certain environment and debug a script. Now

Solution 1:

I had the same issue and to fix that I added following line to the settings.json file:

{
    // to fix 'Timeout waiting for debugger connections'
    "python.terminal.activateEnvironment": false
}

Post a Comment for "Vs Code Python Timeout Waiting For Debugger Connection"