반응형
Notice
Recent Posts
Recent Comments
Link
그럴 수도 있지
[python] Tasks: Configure Task 본문
반응형
view -> Command Palette
Tasks: Configure Task
{
// 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": "python3",
"args": [
"${file}"
],
"presentation": {
"reveal": "always",
"panel": "new"
},
"options": {
"env": {
"PYTHONIOENCODING": "UTF-8"
}
},
"group": {
"kind": "build",
"isDefault": true
}
}
]
}
반응형
'python' 카테고리의 다른 글
[python] 파이썬 설치 (windows 11) 및 버전 확인 (0) | 2023.05.17 |
---|---|
[python] 터미널에서 파이썬 가상환경 생성 (0) | 2022.07.14 |