解决vscode调用的mmcv无法打断点问题
配置文件launch.json修改justMycode:false
{
// 使用 IntelliSense 了解相关属性。
// 悬停以查看现有属性的描述。
// 欲了解更多信息,请访问: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "Python: 当前文件",
"type": "python",
"request": "launch",
"program": "${file}",
"console": "integratedTerminal",
"justMyCode": false,
"cwd": "/data/project/2024/20240903_BEVDet/BEVDet-dev3.0/"
}
]
}
好记性不如烂键盘---点滴、积累、进步!