mac intel安装homebrew 国内源
时间: 2024-09-20 14:12:47 浏览: 86
在Mac电脑上使用Intel架构安装Homebrew,国内镜像可以帮助加速软件包的下载。首先,你需要关闭系统自带的Homebrew更新源,因为它们可能会连接到国外,速度较慢。可以按照以下步骤操作:
1. **删除默认源**:
打开终端(Terminal),运行下面的命令移除默认的Homebrew仓库:
```
brew update && brew tap --unpin homebrew/core && brew uninstall $(brew list) && brew cleanup
```
2. **添加国内镜像源**:
搜索并安装阿里云或其他支持的国内Homebrew仓库,如使用阿里云源,输入以下命令:
```
brew config --set repository-url https://mirrors.aliyun.com/homebrew/bottles/
```
或者使用其他源,比如清华源:
```
brew config --set mirror http://mirrors.tuna.tsinghua.edu.cn/Homebrew
```
3. **验证安装源**:
输入 `brew doctor` 来检查配置是否正确,如果有任何问题,它会提示你如何解决。
4. **重新安装Homebrew**:
现在你可以重新安装Homebrew了:
```
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/main/install.sh)"
```
阅读全文