码迷,mamicode.com
首页 > 其他好文 > 详细

homebrew更新源

时间:2020-07-20 13:24:54      阅读:75      评论:0      收藏:0      [点我收藏+]

标签:国内   rem   安装软件   exp   bre   大学   bottle   注释   bsp   

brew 安装软件比较方便,国内源下载会比较快,但是有时下载会失败

所有有时需要切换国内与默认的源

切换国内源

# 替换brew.git:
$ cd "$(brew --repo)"
# 中国科大:
$ git remote set-url origin https://mirrors.ustc.edu.cn/brew.git
# 清华大学:
$ git remote set-url origin https://mirrors.tuna.tsinghua.edu.cn/git/homebrew/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
# 清华大学:
$ git remote set-url origin https://mirrors.tuna.tsinghua.edu.cn/git/homebrew/homebrew-core.git

# 替换homebrew-bottles:
# 中国科大:
$ echo export HOMEBREW_BOTTLE_DOMAIN=https://mirrors.ustc.edu.cn/homebrew-bottles >> ~/.bash_profile
$ source ~/.bash_profile
# 清华大学:
$ echo export HOMEBREW_BOTTLE_DOMAIN=https://mirrors.tuna.tsinghua.edu.cn/homebrew-bottles >> ~/.bash_profile
$ source ~/.bash_profile

# 应用生效:
$ brew update

切换到官方默认

# 重置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_profile 中把带有homebrew的配置项注释后尝试

homebrew更新源

标签:国内   rem   安装软件   exp   bre   大学   bottle   注释   bsp   

原文地址:https://www.cnblogs.com/a531248552/p/13344177.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!