본문 바로가기

코딩공부

[Python] VS code (Visual studio) Python Run 단축키 세팅

✍️ Study Note

 

 

 

 


 

 

파이썬을 활용한 이커머스 데이터 분석 올인원 패키지 Online.

파이썬 기초 핵심 과정 -  03. 가상화면 설치




 

 

 

VS code 내 'Python 실행 단축키' 설정 방법

 

 

 

1. VS code 열기

2. View - Command palette - Tasks : configure task 선택

3. 'Create tasks.json file from template' 선택

4. Others 선택

5. 기존에 있는 코드 삭제 후 아래 코드 붙여 넣기

6. 저장(Save)하기

 

 

<작업 영상>

 

 

 

<5번 단계에서 붙이는 코드>

{
    // 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
            }
        }
    ]
}

 

 

 

 

 

'Python 실행 단축키' 설정 효과

 

 

 

Python 파일을 실행(Run)할 때는 [Ctrl + Shift + B] 누르면 실행되고,

Terminal에서 System configuration 내역이 없이 깔끔하게 결과값만 볼 수 있다.