vscode debug,无法在第三方库上打断点

vscode debug,无法在第三方库上打断点,第1张

错误提示:

Breakpoint in file excluded by filters.
 
Note: may be excluded because of "justMyCode" option (default == true).Try setting "justMyCode": false in the debug configuration (e.g., launch.json)

解决:

运行-打开配置-修改 launch.json 文件:添加 "justMyCode": false,   如下

    "configurations": [
    
        {
            "name": "Python: 当前文件",
            "type": "python",
            "request": "launch",
            "program": "${file}",
            "console": "integratedTerminal",
            "justMyCode": false,
        }

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/870415.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-13
下一篇 2022-05-13

发表评论

登录后才能评论

评论列表(0条)

保存