Python
launch.json 文件配置
{
// 使用 IntelliSense 了解相关属性。
// 悬停以查看现有属性的描述。
// 欲了解更多信息,请访问: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "Python: 当前文件",
"type": "python",
"request": "launch",
"pythonPath": "C:/Environment/Anaconda/Anaconda3/envs/virtual_xjs/python.exe", // python位置
"program": "D:/Train/start/test-tensor.py", // 需要断点的文件
"env":{},
"envFile": "${workspaceFolder}/.env",
"console": "integratedTerminal"
}
]
}