macOS 홈브루(brew)에서
Updating Homebrew… 멈춤현상 해결방법
control + z
버튼을 눌러 업그레이드 작업 중단- 터미널창에
brew doctor
입력 - 터미널창에
brew cleanup
입력 - 터미널창에
brew doctor
다시 입력 sudo xcode-select --install
입력
권한 오류 해결방법
다음과 같은 에러가 나오면서 brew 프로그램 설치가 안될 때
Error: The following directories are not writable by your user: /usr/local/share/man/man5 /usr/local/share/man/man7
터미널에서 나오는 두 문장을 그대로 복사한 후 붙여넣기 엔터 하면 됩니다.
sudo chown -R $(whoami) /usr/local/share/man/man5 /usr/local/share/man/man7
chmod u+w /usr/local/share/man/man5 /usr/local/share/man/man7
1개의 댓글
개발자 · 2021년 12월 17일 9:12 오전
감사합니다!