Mac下使用国内镜像安装Homebrew

举报
隔壁老汪 发表于 2022/06/24 01:30:20 2022/06/24
【摘要】 Mac下使用国内镜像安装Homebrew First MBP上的brew很老了,就想把brew更新一下,顺便安装一下NodeJs。无奈更新的过程一直卡在网络下载,毫不动弹。想想,应该是Repo访问不到的原因,于是重装brew。 根据官网上的方法,在终端输入: /usr/bin/ruby -e "$(curl -fsSL http...

Mac下使用国内镜像安装Homebrew

First

MBP上的brew很老了,就想把brew更新一下,顺便安装一下NodeJs。无奈更新的过程一直卡在网络下载,毫不动弹。想想,应该是Repo访问不到的原因,于是重装brew。

根据官网上的方法,在终端输入:

/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"

 

结果还是被卡在下载阶段,怎么办呢?于是上网搜索到了“Homebrew 的安装方法(官方的方法老是安装失败) 第三方”这篇文章。

依文中所述,进行安装。由于官方弃用了旧的homebrew仓库,将homebrew程序与软件包拆分成了两个仓库。与文中描述不符,也未能成功安装。于是稍作修改,记录于此。

国内的镜像

新增brew.git与homebrew-core.git镜像

由于官方弃用了旧的homebrew仓库,将homebrew程序与软件包拆分成了两个仓库。为保证用户正常升级,旧镜像将暂时保留一段时间,择期删除。

仓库对应关系:

github.com/Homebrew/brew -> mirrors.ustc.edu.cn/brew.git
github.com/Homebrew/homebrew-core -> mirrors.ustc.edu.cn/homebrew-core.git
github.com/Homebrew/homebrew(弃用) -> mirrors.ustc.edu.cn/homebrew.git

引自:新增brew.git与homebrew-core.git镜像

安装

获取install文件并编辑


  
  1. cd ~
  2. curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install >> brew_install

编辑brew_install文件


  
  1. #!/System/Library/Frameworks/Ruby.framework/Versions/Current/usr/bin/ruby
  2. # This script installs to /usr/local only. To install elsewhere you can just
  3. # untar https://github.com/Homebrew/brew/tarball/master anywhere you like or
  4. # change the value of HOMEBREW_PREFIX.
  5. HOMEBREW_PREFIX = "/usr/local".freeze
  6. HOMEBREW_REPOSITORY = "/usr/local/Homebrew".freeze
  7. HOMEBREW_CACHE = "#{ENV["HOME"]}/Library/Caches/Homebrew".freeze
  8. HOMEBREW_OLD_CACHE = "/Library/Caches/Homebrew".freeze
  9. #BREW_REPO = "https://github.com/Homebrew/brew".freeze
  10. BREW_REPO = "git://mirrors.ustc.edu.cn/brew.git".freeze
  11. #CORE_TAP_REPO = "https://github.com/Homebrew/homebrew-core".freeze
  12. CORE_TAP_REPO = "git://mirrors.ustc.edu.cn/homebrew-core.git".freeze

注释掉BREW_REPO = "https://github.com/Homebrew/brew".freezeCORE_TAP_REPO = "https://github.com/Homebrew/homebrew-core".freeze

修改为BREW_REPO = "git://mirrors.ustc.edu.cn/brew.git".freezeCORE_TAP_REPO = "git://mirrors.ustc.edu.cn/homebrew-core.git".freeze

安装

/usr/bin/ruby ~/brew_install 

 

运行修改了的brew_install文件。

替换homebrew源

替换homebrew默认源


  
  1. cd "$(brew --repo)"
  2. git remote set-url origin git://mirrors.ustc.edu.cn/brew.git

替换homebrew-core源


  
  1. cd "$(brew --repo)/Library/Taps/homebrew/homebrew-core"
  2. git remote set-url origin git://mirrors.ustc.edu.cn/homebrew-core.git

brew更新

brew update

 

设置 bintray镜像


  
  1. echo 'export HOMEBREW_BOTTLE_DOMAIN=https://mirrors.ustc.edu.cn/homebrew-bottles' >> ~/.bash_profile
  2. source ~/.bash_profile



作者:采姑娘的小魔钴
链接:https://www.jianshu.com/p/6523d3eee50d
來源:简书
简书著作权归作者所有,任何形式的转载都请联系作者获得授权并注明出处。

文章来源: blog.csdn.net,作者:隔壁老瓦,版权归原作者所有,如需转载,请联系作者。

原文链接:blog.csdn.net/wxb880114/article/details/81158858

【版权声明】本文为华为云社区用户转载文章,如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱: cloudbbs@huaweicloud.com
  • 点赞
  • 收藏
  • 关注作者

评论(0

0/1000
抱歉,系统识别当前为高风险访问,暂不支持该操作

全部回复

上滑加载中

设置昵称

在此一键设置昵称,即可参与社区互动!

*长度不超过10个汉字或20个英文字符,设置后3个月内不可修改。

*长度不超过10个汉字或20个英文字符,设置后3个月内不可修改。