写点什么

替换及重置 Homebrew 默认源以及 M1 安装

发布于: 2 小时前
替换及重置Homebrew默认源以及M1安装

中科大源:

##替换brew.git:cd "$(brew --repo)"git remote set-url origin https://mirrors.ustc.edu.cn/brew.git
##替换homebrew-core.git:cd "$(brew --repo)/Library/Taps/homebrew/homebrew-core"git remote set-url origin https://mirrors.ustc.edu.cn/homebrew-core.git
复制代码


替换 Homebrew Bottles 源: 参考:替换Homebrew Bottles源


在中科大源失效或宕机时可以:

1. 使用清华源设置参考

2. 切换回官方源:


##重置brew.git:cd "$(brew --repo)"git remote set-url origin https://github.com/Homebrew/brew.git
##重置homebrew-core.git:cd "$(brew --repo)/Library/Taps/homebrew/homebrew-core"git remote set-url origin https://github.com/Homebrew/homebrew-core.git
复制代码


注释掉 bash 配置文件里的有关 Homebrew Bottles 即可恢复官方源。 重启 bash 或让 bash 重读配置文件。


---------------------

Homebrew 官方已经 release 3.0 的版本支持 M1 芯片了

安装:

/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install.sh)"
复制代码

如果想卸载之前按照教程安装的非原生 M1 hom1ebrew

/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/uninstall.sh)"
复制代码

确认是否卸载干净 : 最后可以确认下 /opt/Homebrew目录 和 /usr/local/Homebrew 是否还在。

/opt/Homebrew应该是直接按照教程自己make出来的目录,/usr/local/Homebrew 应该是 3.0 版本直接借助官方命令安装homebrew后存储的位置。

发布于: 2 小时前阅读数: 3
用户头像

多读书多看报,少吃零食多睡觉 2018.08.07 加入

还未添加个人简介

评论

发布
暂无评论
替换及重置Homebrew默认源以及M1安装