관리 메뉴

솜씨좋은장씨

[macOS] brew update 시 Error: 'git' must be installed and in your PATH! 해결 방법 ( Ventura 업데이트 이후 ) 본문

유용한 정보/APPLE

[macOS] brew update 시 Error: 'git' must be installed and in your PATH! 해결 방법 ( Ventura 업데이트 이후 )

솜씨좋은장씨 2022. 10. 29. 10:18
728x90
반응형

최근 M1 Max 맥북프로 16인치를 구매하고 나서!

회사에서 하는 작업에 필요한 라이브러리를 설치하는데 필요한 라이브러리를 설치하기 위해서는

brew 명령어로 설치를 해야하는 라이브러리가 있었습니다.

 

저는 항상 brew install 명령어를 실행하기 전에 brew update 명령어를 실행한 뒤에 실행하는데

아래와 같은 에러메세지가 나오면서 실행이 되지 않았습니다.

(base) somjang@DongHyunui-MacBookPro ~ % brew update
Warning: You are using macOS 13.
We do not provide support for this pre-release version.
You will encounter build failures with some formulae.
Please create pull requests instead of asking for help on Homebrew's GitHub,
Twitter or any other official channels. You are responsible for resolving
any issues you experience while you are running this
pre-release version.

Error: No developer tools installed.
Install the Command Line Tools:
  xcode-select --install

Error: 'git' must be installed and in your PATH!

조금 당황했지만 조금 찾아보니 해결하는  방법은 생각보다 쉬웠습니다.

 

그냥 에러메세지에 나왔던 명령어 xcode-select --install 을 실행하면 되는 것 이었습니다.

🧑🏻‍💻 해결 방법 

(base) somjang@DongHyunui-MacBookPro ~ % xcode-select --install
xcode-select: note: install requested for command line developer tools

먼저 에러메세지에 있던  xcode-select --install 명령어를 복사해서 실행합니다.

그럼 위와 같이 xcode-select 명령어는 명령어 라인 개발자 도구가 필요합니다. 

도구를 지금 설치하겠습니까?

라는 알림창이 하나 뜹니다.

여기서 설치버튼을 클릭합니다.

그러면 나오는 창에서 동의버튼을클릭합니다.

약 10분 정도 기다리면 설치가 완료됩니다. ( M1 Max 16인치 기준 / 기기에 따라 소요되는 시간은 다를 수 있습니다. )

여기까지하고 다시 brew update 를 해보면!

(base) somjang@DongHyunui-MacBookPro ~ % brew update
Updated 1 tap (homebrew/core).
==> New Formulae
pinocchio                                    python-gdbm@3.11                             python-tk@3.11                               python@3.11

이번에는 문제없이 실행되는 것을 볼 수 있습니다.

읽어주셔서 감사합니다.

Comments