Python VSCode Setting - launch.json 설정

2023. 11. 27. 09:00Programming/Python

반응형

 

VSCode에서 F5를 누르면 디버깅하고 싶었다.

VScode에는 다 제공한다.

 

참고

https://code.visualstudio.com/docs/editor/debugging

 

Debugging in Visual Studio Code

One of the great things in Visual Studio Code is debugging support. Set breakpoints, step-in, inspect variables and more.

code.visualstudio.com

 

Launch.json 설정

 

디버깅 선택

아이콘 선택 -> create a launch.json file 클릭한다.

 

Debug Configuration

Python File 선택한다.

 

launch.json

.vscode/launch.json에 파일 자동 생성된다.

 

간단한 파일

F5 누르면 자동으로 디버깅 가능하다.

반응형