brew 命令安装报错:‘Error: The following directories are not writable by your user’
1 | brew install node |
brew命令安装node报错
1 | Error: The following directories are not writable by your user: |
解决方法
收回权限后,即可正常下载
1 | sudo chown -R `whoami`:admin /usr/local/bin |
路漫漫其修远兮 吾将上下而求索
1 | brew install node |
brew命令安装node报错
1 | Error: The following directories are not writable by your user: |
收回权限后,即可正常下载
1 | sudo chown -R `whoami`:admin /usr/local/bin |