본문 바로가기
VScode

VScode 경로 설정을 pycharm 과 같게 바꾸기

by pulluper 2023. 9. 12.
반응형

vscode lanuch.json 에서  

 

[F1] or [Ctrl] + [Shift] + [p]

Debug: Add Configuration.. 에서 

 

"cwd", "env" 를 넣어서 아래와 같이 추가하기 

{
    // 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",
            "justMyCode": true,
            "cwd": "${fileDirname}",
            "env": {"PYTHONPATH": "${workspaceFolder}${pathSeparator}${env:PYTHONPATH}"}
        }
    ]
}

 

반응형

댓글