본문 바로가기

디버깅/Git

[Homebrew] Error: Failure while executing: git config --local --replace-all homebrew.private true

반응형

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

Error: Failure while executing: git config --local --replace-all homebrew.private true




macOS에서 Terminal에서 homebrew를 이용할 때 나타나는 에러다. 뭐 개발에서 커맨드라인툴이 없다고 나오는데, 특별히 OS에서 권한을 건드린게 아니라면 

저 Command Line Tools라는걸 안깔아서 그럴 것이다. Xcode를 설치하면 같이 딸려오는 거 같은데. 굳이 맥 계열 개발 할꺼 아니면 Xcode 깔지말고 플러그인만 깔아주자


$ xcode-select --install 


그 외에 권한이나 오류가 있다면


$ brew doctor 




출처 : 
https://ohthehugemanatee.org/blog/2015/10/01/how-i-got-el-capitain-working-with-my-developer-tools/


반응형