본문 바로가기
개발(Development)/Etc(기타)

맥(Mac) Homebrew, Git 설치 오류 해결 방법: /usr/local/share/man/man7, xcode-select --install

by 카레유 2020. 12. 21.

Homebrew 와 Git이 설치도 안 되고, 사용도 안되는 문제가 발생.

 

맥 OS의 보안 강화 조치로 발생하는 이슈라고 하는데,

해결방법은 간단하다.

 

 

# 에러 로그

 Error : The following directories are not writable by your user: /usr/local/share/man/man7 

 You should change the ownership of these directories to your user.

     sudo chown -R $(whoami) /usr/local/share/man/man7

 

 Error : Git must be installed and in your PATH! 

 Error : The following formula git cannot be installed as binary package and must be built from source. 

 Install the Command Line Tools: xcode-select --install 

 

 

 

 

# 해결 방법

: 로그에서 시키는대로 하면 된다.

 

1. 먼저 폴더 권한을 수정해준다.

$ sudo chown -R $(whoami) /usr/local/share/man/man7

 

2. CLT(Command Line Tools)를 설치해준다. Xcode 없이도 터미널을 통해 각종 유틸리티를 이용할 수 있게 된다.

$ xcode-select --install

 

컴퓨터마다 명령어의 경로가 다를 수 있으니, 로그를 그대로 복사/붙여넣기 하는게 좋다.

 

마지막 명령어를 입력하면 아래와 같은 팝업이 뜨는데,

그냥 "설치"를 눌러서 진행하면 된다.

 

 

설치가 완료되면 모든게 정상적으로 동작하고, 설치된다.

 

 

댓글