前言:想學(xué)習(xí)一下Erlang,想通過homebrew安裝一下環(huán)境灌闺,才發(fā)現(xiàn)新電腦還沒有安裝艰争。通過官方命令在終端上安裝時,發(fā)現(xiàn)小水管實在無法讓人忍受桂对。
于是只能通過國內(nèi)鏡像來安裝啦园细,中間也遇到點問題下面把過程記錄一下。
下面使用清華鏡像
1.通過編輯install文件來使用鏡像地
1.1獲取brew_install
curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install >> brew_instal
1.2編輯brew_instal
vim brew_instal
1.3在Vim模式下接校,按i,進(jìn)入編輯模式狮崩,在BREW_REPO和CORE_TAP_REPO前加#注釋掉蛛勉,寫入鏡像地址代替
BREW_REPO = "https://mirrors.tuna.tsinghua.edu.cn/git/homebrew/brew.git".freeze
CORE_TAP_REPO = "https://mirrors.tuna.tsinghua.edu.cn/git/homebrew/homebrew-core.git".freeze
1.4按ESC退出編輯模式,輸入:wq Return保存退出
2安裝
2.1安裝,運行install
/usr/bin/ruby ~/brew_install
2.2 出現(xiàn)如下代碼時睦柴,不用等了诽凌,直接關(guān)掉命令窗口
==> Tapping homebrew/core
Cloning into '/usr/local/Homebrew/Library/Taps/homebrew/homebrew-core'...
2.3進(jìn)入下面的 Taps 目錄,clone homebrew-core
cd /usr/local/Homebrew/Library/Taps/homebrew
git clone https://mirrors.tuna.tsinghua.edu.cn/git/homebrew/homebrew-core.git
3把homebrew repo切換為清華鏡像
cd "$(brew --repo)"
git remote set-url origin https://mirrors.tuna.tsinghua.edu.cn/git/homebrew/brew.git
cd "$(brew --repo)/Library/Taps/homebrew/homebrew-core"
git remote set-url origin https://mirrors.tuna.tsinghua.edu.cn/git/homebrew/homebrew-core.git
brew update