0
点赞
收藏
分享

微信扫一扫

VSCODE 远程 debug python,本地 lauch.json 配置

追梦人的自留地 2022-04-25 阅读 66
python
{
    // Use IntelliSense to learn about possible attributes.
    // Hover to view descriptions of existing attributes.
    // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
    "version": "0.2.0",
    "configurations": [
        {
            "type": "python",
            "request": "launch",
            "name": "Launch Program",
            "console": "integratedTerminal",
            "skipFiles": [
                "<node_internals>/**"
            ],
            "program": "${file}",
            "pythonPath": "/anaconda/envs/BERT_OOD/bin/python"
        }
    ]
}
举报

相关推荐

0 条评论