(mac m1) vscode에서 python이 실행되지 않는 문제 해결

지니·2024년 5월 12일
0
post-custom-banner

오류 발생

명령어 라인 개발자 도구는 설치된 상태에서 vscode에서 python 코드 작성 후 실행하는데 오류가 떴다.

[Running] python -u "(...).py"
xcode-select: Failed to locate 'python', requesting installation of command line developer tools.

[Done] exited with code=72 in 0.025 seconds


해결 방법

현재 xcode 확인

xcode-select -p

/Library/Developer/CommandLineTools

심볼릭 링크

sudo ln -s /Library/Developer/CommandLineTools/usr/bin/python3 /Library/Developer/CommandLineTools/usr/bin/python

확인해보니 python binary가 없었고 python3 심볼릭 링크를 통해 해결하였다. 혹시 나중에 똑같은 문제에 직면했을 때 슬쩍 떠올리도록 정리해보았다.



참고 링크
https://forums.developer.apple.com/forums/thread/704099

profile
Coding Duck
post-custom-banner

0개의 댓글