Mac中安装homebrew全过程

1.最简单粗暴的方法直接去homebrew的官网,复制命令,粘贴到终端里执行,如果一切正常,那你就不用往下看了。

2.如果安装过程特别慢,最后报错。你可以这么做。

首先:curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install >> brew_instal,复制此命令到终端,执行。

执行完这个命令之后,你去Mac里的当前目录去找,应该会有一个brew_instal的文件。

其次:打开这个文件,将BREW_REPO = "https://github.com/Homebrew/brew".freeze这句话改为BREW_REPO = "git://mirrors.ustc.edu.cn/brew.git".freeze

紧接着:在终端里执行/usr/bin/ruby ./brew_install这个命令,此时你会发现安装过程相比较之前特别的快,但是最后会报这个错误:

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 --depth=1

Error: Failure while executing: /usr/local/bin/brew tap homebrew/core
第四步:执行下面的命令,替换源:

1.cd "$(brew --repo)"
2.git remote set-url origin git://mirrors.ustc.edu.cn/brew.git
3.cd "$(brew --repo)/Library/Taps/homebrew/homebrew-core"
4.git remote set-url origin git://mirrors.ustc.edu.cn/homebrew-core.git

默认不安装cask 有需要的可以替换(以下步骤可选)
cd "$(brew --repo)/Library/Taps/homebrew/homebrew-cask"
git remote set-url origin git://mirrors.ustc.edu.cn/homebrew-cask.git

最后一步:替换bintray镜像:

1.echo 'export HOMEBREW_BOTTLE_DOMAIN=https://mirrors.ustc.edu.cn/homebrew-bottles' >> ~/.bash_profile
2.source ~/.bash_profile

至此,Mac上的homebrew就安装完了,你可以使用brew -v,查看以下是否安装成功。接下来,如果,想要安装什么就直接搜命令去吧。

感谢各位博主的分享。


 

你可能感兴趣的:(开发工具)