Home > Software engineering >  VIisual Studio Code using the wrong debugger (PLSQL Debugger) for my Python code
VIisual Studio Code using the wrong debugger (PLSQL Debugger) for my Python code

Time:09-13

very basic one here. I wrote some Python code that worked fine, then used VS Code for SQL work.

Now I want to reuse Python and try as I might I can't get it to Run without first Debugging in PLSQL Debug. Even if I choose Run -> Run Without Debugging the terminal doesn't load the results of the Python script. Instead I get in the Debug Console:

"Debug started on port 4000, waiting on the client to connect..."

I am sure there is a straightforward answer to this, but how do I get back to VS Code treating my Python code like Python code? Thanks!

CodePudding user response:

Your configurations have been changed when you first run PLSQL debug. Go to your main project path find the .vscode folder and delete launch.json.

pic

After you deleted launch.json file, go to Run and Debug and start a new python debug mode

CodePudding user response:

enter image description here

You can select the debug file type in Run and Debug.

  • Related