1、首先打开下面的链接 如果打不开说明你被墙了,自己解决一下
https://raw.githubusercontent.com/Homebrew/install/master/install.sh
2、把这个网页保存名为brew_install.rb的文件,保存的位置你随便,只要自己能找到。
3、然后在终端进入存放这个文件的目录,然后终端输入
ruby brew_install.rb
4、如果安装还是很卡,打开brew_install.rb文件
把
BREW_REPO = "https://github.com/Homebrew/brew".freeze
CORE_TAP_REPO = "https://github.com/Homebrew/homebrew-core".freeze
替换成
BREW_REPO = "git://mirrors.ustc.edu.cn/brew.git".freeze
CORE_TAP_REPO = "git://mirrors.ustc.edu.cn/homebrew-core.git".freeze
然后执行
ruby brew_install.rb
5、安装brew,在安装的时候,会卡在安装homebrewcore 界面执行下面的命令
sudo git clone git://mirrors.ustc.edu.cn/homebrew-core.git/ /usr/local/Homebrew/Library/Taps/homebrew/homebrew-core
6、下载完成
更新
1、自动脚本(全部国内地址)(在Mac os终端中复制粘贴回车下面脚本)
(已经安装过brew的请自行备份后,再运行下面的安装脚本!!!!!)
安装脚本:
/bin/zsh -c "$(curl -fsSL https://gitee.com/cunkai/HomebrewCN/raw/master/Homebrew.sh)"
卸载脚本:
/bin/zsh -c "$(curl -fsSL https://gitee.com/cunkai/HomebrewCN/raw/master/HomebrewUninstall.sh)"
网友评论