728x90
반응형
xcode 버전을 11 -> 12 로 변경한 후, npm install 시 아래와 같은 에러가 발행
gyp: No Xcode or CLT version detected!
gyp ERR! configure error
gyp ERR! stack Error: `gyp` failed with exit code: 1
gyp ERR! stack at ChildProcess.onCpExit
xcode-select 를 재설치 해야함
1. 설치된 경로 찾기
xcode-select --print-path
나의 경우는 ' /Library/Developer/CommandLineTools ' 경로임
2. 삭제
sudo rm -r -f /Library/Developer/CommandLineTools
3. 재설치
xcode-select --install
728x90
반응형