Mac OS 13.0에서 VS Code code 명령어가 작동하지 않을 때

첫번째 방법

  1. cd /usr/local/bin
  2. nano code
  3. python => python3 아래와 같이 변경
- function realpath() { python -c ...
+ function realpath() { python3 -c ...

두번째 방법

python -V 명령어를 입력했을 때 python을 찾지 못한다면 심볼릭 링크를 걸어준다

brew 설치 기준

ln -s /opt/homebrew/bin/python3 /opt/homebrew/bin/python


출처: https://github.com/microsoft/vscode/issues/141738


© 2021. All rights reserved.