Error Solution

[Mac OS] missing xcrun 에러 해결

viamemine 2023. 7. 27. 11:24
728x90
반응형

 

  • 에러 발견 상황

git config --list command를 작성하였을 때, 다음과 같은 missing xcrun 에러를 발견하였다.

 

xcrun: error: invalid active developer path (/Library/Developer/CommandLineTools), missing xcrun at: /Library/Developer/CommandLineTools/usr/bin/xcrun

 

해당 에러는 mac os를 업데이트하면 발생할 수 있다고 한다. 

 

 

 

  • 에러 해결

해당 에러는 xcode-select 명령으로 CommandLineTools(command line developer tools)를 설치하여 해결할 수 있다.

 

xcode-select --install

 

 

소프트웨어 설치는 약 3-5분 정도 걸렸고, 다시 git command를 작성하였을 때 정상적으로 작동하였다 ! 

728x90