티스토리 뷰
Visual Studio Code 실행 단축키 설정법
1. Ctrl+Shift+b 누른다
그럼 창위에 Create ... 라고 뜬다. 클릭
2. Others 클릭
3. 아래 내용 붙여넣기
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | { // See https://go.microsoft.com/fwlink/?LinkId=733558 // for the documentation about the tasks.json format "version": "2.0.0", "tasks": [ { "label": "파이썬 구동", "type": "shell", "command": "python", "args": [ "${file}" ], "group": { "kind": "build", "isDefault": true } } ] } | cs |
'Python > 환경구축,설정,에러' 카테고리의 다른 글
[Solved]OSError: [Errno 8] Exec format error (0) | 2019.05.29 |
---|---|
[Solved]AttributeError: 'module' object has no attribute 'SSL_ST_INIT' (0) | 2019.05.29 |
Error response from daemon: driver failed programming external connectivity on endpoint (0) | 2019.01.23 |
Nginx+Flask 웹서버 구축하기 (0) | 2019.01.17 |
linux에서 apache와 flask 설치하기 (0) | 2019.01.17 |