[Git] macOS xcrun 에러 해결 방법
macOS 의 업데이트 시, 특히 macOS 의 이름이 변경되는 큰 업데이트가 진행 된 다음에 종종 이런 경우가 있습니다.
지금까지 알려진 해당 이슈가 발생했던 업데이트는
macOs High Sierra
업데이트macOS Sierra
업데이트OS X El Capitan
업데이트
이정도면 큼직한 업데이트마다 만날 수 있는 에러라고 볼 수 있습니다.
xcrun: error: invalid active developer path (/Library/Developer/CommandLineTools), missing xcrun at: /Library/Developer/CommandLineTools/usr/bin/xcrun
error 내용은 위 처럼 나오고,
해결법
# cmd 에서 아래 명령어를 입력합니다.
$ xcode-select --install
macOs 에서 형상 관리 툴인 git
은 xcode 에 같이 딸려서 설치가 되는데,
아마도 macOS 의 큰 업데이트 후에 xcode 의 의존성 문제가 생기고, 이 때문에 git 을 실행 시키는데도 위와 같은 문제가 발생하는거 같다.
Read other posts