brew 命令安装报错:’The following directories are not writable by your user‘

brew 命令安装报错:‘Error: The following directories are not writable by your user’

1
brew install node

brew命令安装node报错

1
2
3
4
Error: The following directories are not writable by your user:
/usr/local/share/man/man8
You should change the ownership of these directories to your user.
sudo chown -R $(whoami) /usr/local/share/man/man8

解决方法

收回权限后,即可正常下载

1
2
sudo chown -R `whoami`:admin /usr/local/bin
sudo chown -R `whoami`:admin /usr/local/share