'vscode'에 해당되는 글 2건

단축키 shift + enter : 한줄을 터미널에서 실행 시커줌 import tensorflow같은게 모듈이 있나 확인하기 좋음

command + shift + c 지금 vscode의 터미널을 띠워줌

따로 써버를 돌리려할때 좋음

블로그 이미지

Or71nH

,

mac : montery 12.0 v

vscode 를 디버깅 할때 문제가 생겻따 자꾸 2.7를 부르는 것이다

그럼으로 파이썬 설정을 하기위해 파이썬 위치를 찾고 디폴틀값을 수정해줘야한다

 

 

{
    "workbench.editorAssociations": {
        "*.ipynb": "jupyter.notebook.ipynb"
    },
    "window.zoomLevel": 1,
    "git.autofetch": true,
    "terminal.integrated.inheritEnv": false,
    "python.defaultInterpreterPath": "/usr/local/bin/python3.9"
}

이것으로 정상 작동

블로그 이미지

Or71nH

,