🐕

Visual Studio CodeでPythonプログラムデバッグ時にコマンドライン引数を渡す

2021/02/12に公開

概要

  • Visual Studio CodeでPythonプログラムデバッグ時にコマンドライン引数を渡す方法

内容

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}",
            "console": "integratedTerminal",
            "args": [
                "--image",
                "--model_path",
                "logs/000/trained_weights_final.h5",
                "--classes_path",
                "model_data/voc_classes.txt"
            ]
        }
    ]
}

Discussion