๐Python Setting In VSC (Visual Studio Code)
1. Python Setting
- Ctrl + Shift + p
- Ctrl + Shift + b
- No build task to run found. Configure Build Task
- Create tasks.josn file from template ์ ํ
- Others ์ ํ
- ํด๋/.vscode/tasks.json ํ์ผ์ด ์๊น
- json ํ์ผ์ ์๋์ ๊ฐ์ด ์์ฑ
{ // See https://go.microsoft.com/fwlink/?LinkId=733558 // for the documentation about the tasks.json format "version": "2.0.0", "tasks": [ { //command๋ ํฐ๋ฏธ๋์์ ์ ๋ ฅ๋ ์ปค๋งจ๋, args๋ ์ปค๋งจ๋์ ํจ๊ป ์ ๋ ฅ๋๋ ์ธ์ "label": "echo", "type": "shell", "command": "python", "args": [ "${file}" ], "group": { "kind": "build", "isDefault": true }, "presentation": { "echo": true, "reveal": "always", "focus": false, "panel": "shared", "showReuseMessage": true, "clear": false } } ] }
- ๋๋ฒ๊น ์ F5 (์ํ๋์ค์ F9 ๋๋ฅด๋ฉด ๋ธ๋ ์ดํน ํฌ์ธํธ ๊ฐ๋ฅ)
- ์คํ์ Ctrl + F5
2. ํจํค์ง ์ค์น ๋ฐฉ๋ฒ
- ๊ฐ์ํ๊ฒฝ ์ค์
- ํฐ๋ฏธ๋ (Ctrl + ` 1์์์๋๊ฑฐ)
-
python -m venv .venv //python -m venv (๋๋ ํ ๋ฆฌ๊ฒฝ๋ก)
- ํ์ธ์ .vscode/settings.json ์์ ....../.venv\Scripts\python.exe" ํจ
- ์ค๋ฅ evn/Scripts/activate.ps1 ํ์ผ์ ๋ก๋ ํ ์ ์๋ค ํด๊ฒฐ
- ์์ธ: Windows์์๋ง ๋ฐ์, Windows Terminal์ด ๊ธฐ๋ณธ์ผ๋ก Power Shell๋ก ์ค์ ๋์ด ์๊ธฐ ๋๋ฌธ
- ํด๊ฒฐ
- Ctrl + Shift + p
- Terminal์์ Select Default Shell ์ ๋ ฅ
- Command Prompt or Git bash๋ก ์ ํ
- ํจํค์ง ์ค์น (๋ช
๋ น์ด๋ก ์ด๋, ์คํ)
- ํฐ๋ฏธ๋์์ .venv/scripts ํด๋๋ก ์ด๋ํ๋ค activate.bat ์คํ
- pip install [ํจํค์ง๋ช ]
- deactivate.bat (activate์์ ๋น ์ ธ๋์ค๋ ๋ช ๋ น)
'Setting > Python' ์นดํ ๊ณ ๋ฆฌ์ ๋ค๋ฅธ ๊ธ
PyCharm ์์ Github ์ฌ์ฉ Using Github with PyCharm (0) | 2020.11.24 |
---|---|
ํ์ด์ฐธ ํฐํธ, ํ ๋ง ๋ณ๊ฒฝ PyCharm Setting (0) | 2020.11.23 |
PyCharm ์์ Python ์์ํ๊ธฐ (Getting Started with Python in PyCharm (0) | 2020.11.23 |