Tuesday 5 January 2021

Enable python debugger settings for Visual Studio Code

 Add python.pythonPath to settings.json as below:

{
"python.pythonPath": "/path/to/bin/python",
"debug.allowBreakpointsEverywhere": true,
"python.testing.nosetestPath": "nosetest",
"python.testing.cwd": "",
"python.testing.pytestEnabled": true
}


No comments:

Post a Comment