vscode中配置python调试环境
1.launch.json
新建launch.json,内容如下:
{
// 使用 IntelliSense 了解相关属性。
// 悬停以查看现有属性的描述。
// 欲了解更多信息,请访问: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "Python: Current File",
"type": "python",
"request": "launch",
"program": "${file}",
"pythonPath":"/usr/bin/python3",
// 写参数的时候,参数中不能有多余的空格,不然会出现错误。
"args":[
],
"console": "integratedTerminal",
// 不止debug我自己写得代码
"justMyCode": false
}
]
}
【注】打开哪个文件,就会运行哪个文件。故运行文件A时,记得要打开文件A,然后再点运行。
需要加载模块的脚本调试
以下是test.py程序的运行命令,如何编写vscode的launch.json对test.py进行调试:
python -m torch.distributed.launch --nproc_per_node=1 --master_port=29500 ./tools/test.py
在“launch.json”文件中,可以根据以下配置添加调试配置:
{
"version": "0.2.0",
"configurations": [
{
"name": "Python: test.py",
"type": "python",
"request": "launch",
"module": "torch.distributed.launch",
"args": [
"--nproc_per_node=1",
"--master_port=29500",
"${workspaceFolder}/tools/test.py"
],
"cwd": "${workspaceFolder}",
"console": "integratedTerminal",
"env": {},
"envFile": "${workspaceFolder}/.env",
"stopOnEntry": false
}
]
}