launchjson

案例

args

1
"args": ["--arg1", "value1", "--arg2", "value2"]
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{
// 使用 IntelliSense 了解相关属性。
// 悬停以查看现有属性的描述。
// 欲了解更多信息,请访问: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [

{
"name": "TestTrain",
"type": "python",
"request": "launch",
"program": "${workspaceFolder}/process/run.py",
"console": "integratedTerminal",
"justMyCode": true,
"args": ["--aiarena_max_frame_num=9000","--aiarena_max_steps=3000", "--aiarena_test_timeout=360","--aiarena_use_init_model=true"]
}
]
}