尝试使用 VSCode 进行调试时,我无法为执行的 Python 脚本设置命令行参数 (CLI)
main.py
。该脚本使用 Python 包 fire
生成 CLI 参数。
我正在使用 VSCode 远程使用以下
launch.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": [
{
"name": "Python: Current File",
"args": ["test", "--model", "'MODELPARAM'", "--load_model_path", "'check_points/best.pth'"],
"type": "python",
"request": "launch",
"program": "/home/usr/MYMODEL/main.py",
"console": "integratedTerminal",
"justMyCode": true
}
]
}
我希望能够使用正确设置的命令行参数进行调试。
有什么想法吗?