Think Twice
IT技術メモ | Visual Studio Codeのメモ
Created: 2023-05-09 / Updated: 2023-05-09

Visual Studio Codeでスクリプトの実行やデバッグをする


VSCodeでスクリプトを実行したりデバッグしたりする設定のメモです。
ここでは例としてPythonを使用しています。

目次


手順

launch.jsonを作成する

.vscode/launch.json
Copy
{
    // 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",
            "type": "python",
            "request": "launch",
            "program": "${file}",
            "console": "integratedTerminal",
            "justMyCode": true
        }
    ]
}

実行

引数を渡して実行する

launch.jsonを編集する

.vscode/launch.jsonを開き、argsの設定を追加します。(下記の赤字の部分)

.vscode/launch.json
Copy
{
    // 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",
            "type": "python",
            "request": "launch",
            "program": "${file}",
            "console": "integratedTerminal",
            "justMyCode": true,
            "args": [
                "引数1",
                "引数2",
                "引数3"
            ]
        }
    ]
}

実行


参考

参考サイト

参照