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

{
    // 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": [
                "/**"
            ],
            "program": "${file}",
            "pythonPath": "/anaconda/envs/BERT_OOD/bin/python",
            "cwd": "${workspaceFolder}/BERT-unsupervised-OOD"
        }
    ]
}

你可能感兴趣的:(Install:,Packages,&,Tools,python)