运行 python 文件 Cmder/ConEmu vs 代码
Run python files in Cmder/ConEmu vs code
默认情况下,vs 代码 运行 在它创建的 'python' 终端中的 python 文件,但我希望它在 中 运行 Cmder/ConEmu 的外部终端 。我该怎么做?
是的,您可以使用 VSCode 中的 cmder shell。可以参考official docs.
{
"terminal.integrated.profiles.windows": {
"cmder": {
"path": "C:\WINDOWS\System32\cmd.exe", //point to the cmd.exe location
"args": ["/K", "C:\cmder\vendor\bin\vscode_init.cmd"] //point to vscode_init.cmd which under the installation location of the cmder
}
},
"terminal.integrated.defaultProfile.windows": "cmder"
}
默认情况下,vs 代码 运行 在它创建的 'python' 终端中的 python 文件,但我希望它在 中 运行 Cmder/ConEmu 的外部终端 。我该怎么做?
是的,您可以使用 VSCode 中的 cmder shell。可以参考official docs.
{
"terminal.integrated.profiles.windows": {
"cmder": {
"path": "C:\WINDOWS\System32\cmd.exe", //point to the cmd.exe location
"args": ["/K", "C:\cmder\vendor\bin\vscode_init.cmd"] //point to vscode_init.cmd which under the installation location of the cmder
}
},
"terminal.integrated.defaultProfile.windows": "cmder"
}