alt
Home Homebrew 오류 제거
Post
Cancel

Homebrew 오류 제거


문제 상황

: 파이썬 필요 모듈 install 과정에서 아래와 같은 에러 발생

1
2
3
4
5
6
7
8
~~~

fatal error: 'Foundation/Foundation.h' file not found

#import <Foundation/Foundation.h>

^~~~~~~~~~~~~~~~~~~~~~~~~


해결

: 주로 m1 관련 이슈이긴 했으나, Mac의 /Library/Developer/CommandLineTools 를 업데이트하라는 솔루션 발견 후 수행

  • brew doctor 을 통해 검사
  • brew update, brew upgrade --greedy, brew cleanup, brew autoremove 수행하고 해결 안되는 것은 제시된 방안대로 직접 해결
  • brew doctor 결과

before_home_brew


수행 후 side effect

  • bundler 삭제되는 이슈: bundler는 실제로 사용하고 있던 건데 위의 과정에서 삭제된 것으로 보인다. gem install bundler 수행해 해결
  • 키체인 없어지는 이슈: 깃 토큰 연결한 키체인이 없어짐 -> 다시 입력



Reference)

https://developer.apple.com/forums/thread/107785

This post is licensed under CC BY 4.0 by the author.