vs code python build 설정(tasks.json)

2020. 7. 12. 16:08재활용용

vs code 에서 *.py 작성

build : ctrl + shift + b 

tasks.json 설정이 안된경우.

configure~ -> create tasks.json -> others 를 차례로 선택

 

task.json에 복붙(python 용)

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
    // See https://go.microsoft.com/fwlink/?LinkId=733558
    // for the documentation about the tasks.json format
    "version""2.0.0",
    "tasks": [
        {
            "label""Python Run",
            "type""shell",
            "command""python",
            "args": [
                "${file}"
            ],
            "options": {
                "env": {
                    "PYTHONIOENCODING""UTF-8"
                }
            },
            "group": {
                "kind""build",
                "isDefault"true
            }
        }
    ]
}
cs

 

task 설정이 안된상태에서 빌드 실행했을 때

The terminal process terminated with exit code: 1 발생하는 경우도 있었다.