VSCODE를 설치하고서 책에서 하라는 대로 따라하면 대부분 문제가 없다.
가끔 DEBUGGING 할 때 제대로 되지 않는다면 아래 경로, 환경변수를 추가해 보자
자세한 설명은 Stackoverflow의 아래 링크를 참고하자
https://stackoverflow.com/questions/53653083/how-to-correctly-set-pythonpath-for-visual-studio-code
처음 실행하는 사람들은 Debug Menu에서 톱니바퀴를 눌러 환경설정용 "launch.json"을 생성한다.
아래 문구를 복사해서 쓴다.
{
// 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", // 결과를 통합Terminal에서 보여줌
"cwd": "${fileDirname}", // 실행파일 폴더에서 실행
"env": {"PYTHONPATH": "${workspaceFolder}${pathSeparator}${env:PYTHONPATH}"}
}
]
}
_
반응형