Home > other >  How do I run my code in the terminal in VSCode?
How do I run my code in the terminal in VSCode?

Time:07-22

For Details, There are no errors, I use code runner, and the programing language is Python.

CodePudding user response:

You can find different ways of running Python code in VS Code, including running in terminal, here: How to execute Python code from within Visual Studio Code

CodePudding user response:

Ctrl Shift P, search for terminal, click, run code with command python -m my_script.py and Enter

  • Related