명령어 라인 개발자 도구는 설치된 상태에서 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