码迷,mamicode.com
首页 > 系统相关 > 详细

Mac安装brew(遇到的坑)

时间:2018-08-10 11:39:56      阅读:2739      评论:0      收藏:0      [点我收藏+]

标签:mac   operation   class   令行   卸载   分享   config   size   需要   

1.安装方法:

网上都会有

命令行输入 /usr/bin/ruby -e "$(curl -fsSL 技术分享图片https://raw.githubusercontent.com/Homebrew/install/master/install)"

然后执行brew

Error: /usr/local must be writable!

解决办法 sudo chown -R $(whoami) /usr/local    $(whoami)为当前用户名

chown: /usr/local: Operation not permitted 

这种方法对于高版本的OS来说,是解决不了的,我们可以选择直接下载最新版本的

需要先卸载

/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/uninstall)"

 然后安装

/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"

如果有报错

fatal: unable to access;Failed connect to github.com

或者 ping Github.com 不通的 

这时候需要git config --global http.proxy

查询当前设置了代理

然后git config --global --unset http.proxy 取消设置 

再执行 /usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" 进行安装

安装到

Press RETURN to continue or any other key to abort  

回车键 

技术分享图片

遇到上面说明安装成功

brew测试下

技术分享图片

ok,如有不懂,或者遇到什么别的问题加群讨论。

 

Mac安装brew(遇到的坑)

标签:mac   operation   class   令行   卸载   分享   config   size   需要   

原文地址:https://www.cnblogs.com/chaihy/p/9453852.html

(1)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!