본문 바로가기

IT/개발

vscode에서 break point가 동작하지 않을때 해결

반응형

vscode에서 break point를 지정해도 run 시 disable 되어 버리는 경우가 있습니다. 

 

이런 경우 debugpy 모듈이 설치되지 않았거나 올바르게 설치되지 않았을 가능성이 있습니다.

 

1. debugpy 설치

pip install debugpy 

 

2. launch.json 파일 수정 

{

    "version": "0.2.0",

    "configurations": [    

        {

            "name": "Python 디버거: 현재 파일",

            "type": "python",

            "request": "launch",

            "program": "${file}",

            "console": "integratedTerminal",

            "justMyCode": false,

        }

    ]

}

 

3. extension 설치 

 

 

이렇게 하면 대부분 해결이 됩니다

반응형