Home > OS >  Change the Python Terminal from Bash to CMD in VSCODE
Change the Python Terminal from Bash to CMD in VSCODE

Time:05-11

I am trying to change the Executing Terminal for python in VSCode from Bash to CMD. I already tried changing the default terminal by following enter image description here

It's the same as adding the following line into your setting.json:

    "terminal.integrated.defaultProfile.windows": "Command Prompt",

If it still doesn't work, try reinstalling vscode

CodePudding user response:

If you just changed your default terminal, try restarting your computer, that worked for me, it wasn't taken into account before I did.

  • Related