vscode python 디버깅하기 / argument 넣기

jaeha_lee·2022년 8월 25일
0

vscode에서 F5 눌러서 디버깅하는 법
("args" 까지 넣는 법)

  • 디버깅하고자 하는 프로젝트 안에서 .vscode 라는 폴더를 생성하고

  • launch.json / settings.json 파일을 생성한다.

    • settings.json

      {
          "python.pythonPath": "어떤 python을 사용할 건지. python 설치 위치 지정"
          // "/venv/venvTest/bin/python3"
      }
    • launch.json

      {
          "version": "0.2.0",
          "configurations": [
              {
                  "name": "Python: Current File",
                  "type": "python",
                  "request": "launch",
                  "program": "${workspaceFolder}/test.py", // 어떤 python 파일을 실행할 것인지
                  "args": ["--config","test.yaml",
                  "--input","check.txt",
                  ], // argument 집어넣어서 실행할 경우
                  "console": "integratedTerminal"
              }
          ]
      }

      이 경우

      python3 test.py --config test.yaml --input check.txt

      와 같다.

0개의 댓글