-
xcode 삭제후 git, homebrew 에러Programming 2018. 9. 4. 15:29
homebrew 에러
이슈
homebrew 명령 실행 안됨
원인
Xcode.app 설치 후 디스크 공간확보를 위해 삭제함
증상
[we]:/Users/we> brew install gradle
xcrun: error: invalid active developer path (/Applications/Xcode.app/Contents/Developer), missing xcrun at: /Applications/Xcode.app/Contents/Developer/usr/bin/xcrun
Error: An exception occurred within a child process:
CompilerSelectionError: gradle cannot be built with any available compilers.
Install GNU's GCC
brew install gcc
조치
1. xcode cli 버전 설치
설치 명령어 실행
[we]:/Users/we> xcode-select --install
설치 화면
설치 완료
[we]:/Users/we> xcode-select -v
xcode-select version 2354.
2. xcode 경로 변경하기
> sudo xcode-select --switch /Library/Developer/CommandLineTools
경로 비교
설치전
설치후
> xcode-select -p
/Applications/Xcode.app/Contents/Developer
> xcode-select -p
/Library/Developer/CommandLineTools
3. brew 명령어 실행
명령어 실행 성공
> brew install gradle
==> Downloading https://downloads.gradle.org/distributions/gradle-5.2.1-all.zip
############################################################## 100.0%
🍺 /usr/local/homebrew/Cellar/gradle/5.2.1: 13,355 files, 235.3MB, built in 53 seconds
라이브러리 버전정보
> gradle -v
Welcome to Gradle 5.2.1!
Here are the highlights of this release:
- Define sets of dependencies that work together with Java Platform plugin
- New C++ plugins with dependency management built-in
- New C++ project types for gradle init
- Service injection into plugins and project extensions
For more details see https://docs.gradle.org/5.2.1/release-notes.html
------------------------------------------------------------
Gradle 5.2.1
------------------------------------------------------------
Build time: 2019-02-08 19:00:10 UTC
Revision: f02764e074c32ee8851a4e1877dd1fea8ffb7183
Kotlin DSL: 1.1.3
Kotlin: 1.3.20
Groovy: 2.5.4
Ant: Apache Ant(TM) version 1.9.13 compiled on July 10 2018
JVM: 1.8.0_131 (Oracle Corporation 25.131-b11)
OS: Mac OS X 10.14.3 x86_64
IntelliJ 에서 git 경로 재 설정
High Sierra 업데이트하고 git 인 안되는경우는 아래 명령어로 해결된다.
xcode-select --install
나는 High Sierra 이긴 한데..
최근 디스크 용량부족으로 Xcode 앱을 삭제했더니 위 명령어로 해결이 되지 않았다.
에러내용
> which git
/usr/bin/git
> git --version
xcrun: error: invalid active developer path (/Applications/Xcode.app/Contents/Developer), missing xcrun at: /Applications/Xcode.app/Contents/Developer/usr/bin/xcrun구글링을 많이도 했는데..
외국 형아가 그냥 git 을 설치하란다. ㅋ
(+ sudo xcode-select --switch /Library/Developer/CommandLineTools 이거 해줬음됐는뎅;)
장애물이 많을땐 우회하시오.
설치 고고 : https://git-scm.com/download/mac
설치전설치후
'Programming' 카테고리의 다른 글
[ubuntu] apt-get 사용법 (0) 2019.03.23 Mac 환경 셋팅 (0) 2017.06.15 Outlook 보낸 메일 회수 (0) 2016.07.28