Python interpreter 지정은 ctrl + shift + p 눌러
python: select interpreter 선택 (가상환경의 python실행파일이나 로컬환경의 python실행화일을 선택한다.)
Enter interpreter path 선택하여 생성한 .venv 폴더의 python.exe파일을 선택한다.
그리고 나서 Debug모드에서 Python: Django 선택 > 실행하면 runserver 실행된다.
만약 Visual Studio Code에서 선택한 기준폴더가 ws.daonelab.com이라면 그 아래에 .vscode 폴더가 생성되고 환경설정을 하면 그 아래에 launuch.json, settings.json 파일이 생성된다.
launch.json
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "Python: Current File",
"type": "python",
"request": "launch",
"program": "${file}",
"console": "integratedTerminal"
},
{
"name": "Python: Django",
"type": "python",
"request": "launch",
"program": "${workspaceFolder}/manage.py",
"args": [
"runserver"
],
"django": true
}
]
}
${workspaceFolder}는 현재 Visual Studio Code 탐색기에서 선택한 폴더기준이다.
settings.json
{
"python.pythonPath": ".venv\\Scripts\\python.exe"
}