【Python】mac实现vscode调试python代码

问题:下载里python扩展后仍不能单点调试代码

原因:未做配置

配置如下:

  1. 打开vscode的设置,搜索python.pythonPath,配置python按照路径,自己的按照路径可以在终端输入

which python3

如下图填写:
【Python】mac实现vscode调试python代码

  1. 去lunch.json配置

如下图点击1处,再点击2处,再再3处添加框中所示,为方便粘贴,添加配置在下面:

{

"name": "Python: currenfile",

"type": "python",

"request": "launch",

"program":"${file}",

"console":"integratedTerminal"

}

【Python】mac实现vscode调试python代码

  1. 至此,完成,在上图2处选择你配置的currentfile,点击上图2处的▶️图标执行,就可以断点调试了。

以上是 【Python】mac实现vscode调试python代码 的全部内容, 来源链接: utcz.com/a/72966.html

回到顶部