본문 바로가기
Come on IT/참고용

Mac 업그레이드 이후 xcrun: error: invalid active developer path 에러 해결하기

by JONGSKY 2023. 2. 19.
728x90
SMALL

1. 글을 쓰게 된 계기

 

맥북을 업그레이드 한 이후로 평소처럼 git을 불렀지만

사진과 같은 에러를 뿜어내서 해결방법을 정리하고자 한다.

 

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

 

에러사진

 

2. 해결 방법

 

CommandLineTools를 식별하지 못해 생기는 문제로

아래 코드와 같이 xcode-select 명령으로 CommandLineTools(command line developer tools)를 설치하여

해결 가능합니다.

 

xcode-select --install

 

이렇게 소프트웨어를 다운로드하면

 

 

 

사진처럼 정상적으로 명령어가 되는 것을 확인할 수 있습니다.

 

 

728x90
LIST