简体   繁体   中英

VS CODE, how run python in OS terminal ? (Shell or CMD)

I'm programming (i try) in python with VS code. On Windows and linux.

When i write a script an try to launch it, either on windows and linux the output is in a integrated terminal on vs code the bottom of the windows.

My question is, when i press CTRL+F5 its possible to run my script automatcly on a CMD terminal if i'm in windows and a Shell terminal if i'm in linux? ( Open a new Terminal windows like Microsoft Visual Studio comunity )

i don't like the integrated terminal, and i prefere the OS terminal.

Thanks !

In VSCode, we can set the output mode of debugging Python. VSCode uses the internal terminal " integratedTerminal " by default, (" Python Debug Console ").

For example, please use "console": "externalTerminal", in " launch.json " to set the output mode of debugging to VSCode's external terminal, that is, the cmd terminal of windows,then press Ctrl+F5 to debug the code:

在此处输入图像描述

Reference: Debug console in VSCode .

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM