728x90
과정
brew 업그레드 명령 실행시 퍼미션 에러가 발생했습니다.
$ sudo brew upgrade
Error: Running Homebrew as root is extremely dangerous and no longer supported.
As Homebrew does not drop privileges on installation you would be giving all
build scripts full access to your system.
위처럼 root 권한으로 brew 명령을 실행해도 권한에 대한 에러는 동일하게 발생했습니다.
$ brew --prefix
/user/local
$ sudo chown -R $(whoami) /usr/local
chown: /usr/local: Operation not permitted
brew 명령의 시작 경로 권한을 변경했지만 에러는 여전히 발생했습니다.
해결 방법
sudo chown -R $(whoami) $(brew --prefix)/*
728x90
댓글