Mac 安装homebrew及报错处理

通常按照官网方法

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

按照此方式安装如果因为网络原因出现 如下问题

curl: (7) Failed to connect to raw.githubusercontent.com port 443: Connection refused

可以通过如下方式尝试:

方式一(推荐)

  • 此时在终端ping不同,打开网站, 查询一下 raw.githubusercontent.com对应的IP 地址199.232.68.133
  • hosts下添加记录199.232.68.133 raw.githubusercontent.com,保存退出
  • 至此,在终端可ping通,可按官网方式重新安装

方式二(本人尝试不可用)

sudo gem install redis

完成后尝试安装brew,但是不行,网上流传的版本果然不一定行

方式三(可用,但是很慢)

  • 由于打不开的网址https://raw.githubusercontent.com/Homebrew/install/master/install,可以生成一个rb文件brew_install.rb(链接:https://pan.baidu.com/s/1MTMlZNV5_gL8eqB4aCqMZg,提取码:jvkz)

我试过的暂时就是这三种方式,在安装的过程中由于我网络状态不好,出现一直卡顿,我就强行中断了安装命令,会出现一些其他的错误,一并记下

其他错误记录

Error: Another active Homebrew update process is already in progress.
Please wait for it to finish or terminate it to continue.
Failed during: /usr/local/bin/brew update --force
#这个错误很明显是已经有homebrew更新或者安装的进程了,不想再等待,可先删除再执行
#命令
rm -rf /usr/local/var/homebrew/locks/
==> Downloading and installing Homebrew...
HEAD is now at 8175e404e Merge pull request #7942 from sjackman/bottle_tag
error: Not a valid ref: refs/remotes/origin/master
fatal: ambiguous argument 'refs/remotes/origin/master': unknown revision or path not in the working tree.
#这个错误是由于多次下载,导致一些冲突,最简单粗暴的解决就是卸载重装

卸载方式:下载保存为uninstall.rb,并执行,即可卸载

ruby uninstall.rb

 

你可能感兴趣的:(Mac,mac,brew)