본문 바로가기
파이썬

VS code + Python

by 파란만장한소년 2021. 1. 4.

1. Python 확장 프로그램 설치

 

 

Ctrl + Shift + B

 

2. tasks.json

{
    "version": "2.0.0",
    "tasks": [
        {
            "label": "python3",
            "type": "shell",
            "command":"python",
            "args":["${file}"],
            "group":{
                "kind":"build",
                "isDefault":true
            },
            "presentation":{
                "echo":true,
                "reveal":"always",
                "focus":false,
                "panel":"shared",
                "showReuseMessage":true,
                "clear":true
            }
        }
    ]
}

 

 

'파이썬' 카테고리의 다른 글

IPython 설치  (0) 2021.01.01
예제 코드 다운로드  (0) 2021.01.01
Git Bash 설치  (0) 2020.12.31
2. 파이참(PyCharm) 설치  (0) 2020.12.31
1. 파이썬 설치  (0) 2020.12.31