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 발생하는 경우도 있었다.
'재활용용' 카테고리의 다른 글
scrollLockPusher - mouseJiggler 대용 화면보호방지기(POWERSHELL) (2) | 2022.10.18 |
---|---|
[javascript] code snippet 2 (0) | 2021.10.04 |
[Javascript] 즐겨 쓰는 code snippet (2) | 2021.09.28 |
mysql + dbeaver 연결 (0) | 2020.07.22 |
Dockerfile 이용한 centos+mongodb 설치, centos+mariadb 설치 (0) | 2020.07.17 |