mac安装braw

命令行安装

对于braw的安装,只要一条命令就可以了

/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install.sh)"

安装慢或443问题

由于安装源在github上,国内访问github有名种蛋疼的问题。

通过https://www.ipaddress.com先查出raw.githubusercontent.com的真实ip,然后修改本地hosts文件添加直接解析

:: 由于它是通过CDN的,可能不止一个ip,挑一个自己访问最快的ip解析就可以了,ip之后也可能会改变。
185.199.108.133 raw.githubusercontent.com
185.199.108.133 user-images.githubusercontent.com
185.199.108.133 avatars2.githubusercontent.com
185.199.108.133 avatars1.githubusercontent.com

然后再运行上面的命令安装brew。

自己安装了好几次都卡在了homebrew-core下载上,有时是下不过来,有时直接报错了。

Cloning into '/usr/local/Homebrew/Library/Taps/homebrew/homebrew-core'...
fatal: unable to access 'https://github.com/Homebrew/homebrew-core/': LibreSSL SSL_read: SSL_ERROR_SYSCALL, errno 54
Error: Failure while executing; `git clone https://github.com/Homebrew/homebrew-core /usr/local/Homebrew/Library/Taps/homebrew/homebrew-core` exited with 128.
Error: Failure while executing; `/usr/local/bin/brew tap homebrew/core` exited with 1.

这个,直接进入github网站https://github.com/Homebrew/homebrew-core,点击直接下载zip包。

然后把整个zip包解压,复制到/usr/local/Homebrew/Library/Taps/homebrew/homebrew-core目录下。

最后诊断一下

brew doctor
brew -v
0%