41 lines
1.1 KiB
Markdown
41 lines
1.1 KiB
Markdown
# MAC 配置 brew
|
|
|
|
## 更改 brew 源为中科院镜像
|
|
|
|
```bash
|
|
git clone git://mirrors.ustc.edu.cn/homebrew-core.git/ /usr/local/Homebrew/Library/Taps/homebrew/homebrew-core --depth=1
|
|
```
|
|
|
|
## 把 homebrew-core 的镜像地址设为中科院的国内镜像
|
|
|
|
```bash
|
|
cd "$(brew --repo)"
|
|
git remote set-url origin https://mirrors.ustc.edu.cn/brew.git
|
|
cd "$(brew --repo)/Library/Taps/homebrew/homebrew-core"
|
|
git remote set-url origin https://mirrors.ustc.edu.cn/homebrew-core.git
|
|
```
|
|
|
|
## 更改为清华镜像
|
|
|
|
```bash
|
|
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
|
|
```
|
|
|
|
## 恢复为 github
|
|
|
|
```bash
|
|
cd "$(brew --repo)"
|
|
git remote set-url origin https://github.com/Homebrew/brew
|
|
cd "$(brew --repo)/Library/Taps/homebrew/homebrew-core"
|
|
git remote set-url origin https://github.com/Homebrew/homebrew-core
|
|
```
|
|
|
|
更换为国内源
|
|
|
|
```bash
|
|
/bin/zsh -c "$(curl -fsSL https://gitee.com/cunkai/HomebrewCN/raw/master/Homebrew.sh)"
|
|
```
|