vscode) python 실행용 tasks.json 기록
python 디버깅 없이 python 실행 설정 json
📜 제목으로 보기
VScode
tasks.json
-
ctrl
+shift
+B
로 python파일 빠르게 출력하기 함. -
한번 눌러보고 설정>템플릿생성>Others>기록
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "Project Label",
"type": "shell",
"command": "python",
"args": [
"${file}"
],
"presentation": {
"reveal": "always",
"panel": "new"
},
"options": {
"env": {
"PYTHONIOENCODING": "UTF-8"
}
},
"group": {
"kind": "build",
"isDefault": true
}
}
]
}