개발이야기
[트러블슈팅] tool 'xcodebuild' requires Xcode, but active developer directory '/Library/Developer/CommandLineTools' is a command line tools instance 문제해결
기록하는 백앤드개발자
2024. 1. 12. 15:11
반응형
ㅁ 들어가며
ㅇ 패러럴즈 데스크탑 19 크랙에서 크랙 적용 단계에서 xcode 에러가 발생하여 트러블 슈팅 이력을 남긴다.
ㅁ 에러 내용
xcode-select: error: tool 'xcodebuild' requires Xcode, but active developer directory '/Library/Developer/CommandLineTools' is a command line tools instance
ㅇ xcodebuild는 Xcode가 필요하지만 개발자 디렉터리 '/Library/Developer/CommandLineTools'는 명령줄 도구 인스턴스인 오류이다.
ㅁ 해결방법
$ sudo xcode-select -s /Applications/Xcode.app/Contents/Developer
ㅇ active developer 디렉토리의 경로를 다시 지정하였다.
ㅁ 함께 보면 좋은 사이트
반응형