반응형
터미널에서 code . 를 입력하면 VScode가 안열리고 에러발생할 때
1. PATH가 정상적으로 설정되지 않으면 아래와 같은 에러 발생
$ code
zsh: command not found: code
1-1. VScode를 실행하고 Command + Shift + P를 입력해서 커맨드 팔레트를 연다.
'Shell Command : Install 'code' command in PATH' 실행해서 추가한다.
1-2. 터미널에서 code -v를 실행해서 버전이 출력되면 해결
2. 1-1에서 permission error가 발생하면
터미널에서 bin 디렉토리에 접근하여 PATH code를 지우고 다시 install 한다.
cd /usr/local/bin
sudo rm -rf code
VScode를 켜서 1-1을 다시해본다.
반응형
'Archive' 카테고리의 다른 글
[TS] Type Aliases / Literal Type (0) | 2021.12.30 |
---|---|
[JS] 객체지향 2 ( Create, Class ) (0) | 2021.12.28 |
[JS] 객체지향 (Constructor, Prototype) (0) | 2021.12.28 |
[GIT] Git flow / Rebase / Upstream (0) | 2021.12.17 |
[TIL] Plug-in? (0) | 2021.12.07 |