vscode设置调试路径
将下面内容贴到.vscode/launch.json文件中,没有就自己创建一个。
{
// 使用 IntelliSense 了解相关属性。
// 悬停以查看现有属性的描述。
// 欲了解更多信息,请访问: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "Python: 当前文件launch",
"type": "python",
"request": "launch",
"program": "${file}",
"console": "integratedTerminal",
vscode设置调试路径最先出现在Python成神之路。
共有 0 条评论