今天在使用 brew 安裝 nginx 時,提示錯誤,安裝不上去:
brew install nginx, 提示:/usr/local is not writable.
這個是需要修改 /usr/local 目錄的許可權:
sudo chown -R $(whoami) /usr/local
執行此命令後, 再執行 brew install nginx 即可安裝。
今天在使用 brew 安裝 nginx 時,提示錯誤,安裝不上去:
brew install nginx, 提示:/usr/local is not writable.
這個是需要修改 /usr/local 目錄的許可權:
sudo chown -R $(whoami) /usr/local
執行此命令後, 再執行 brew install nginx 即可安裝。