安装

https://brew.sh/index_zh-cn

homebrew官网地址

https://brew.sh/index_zh-cn

修改源

参考地址https://developer.aliyun.com/mirror/homebrew?spm=a2c6h.13651102.0.0.3e221b112ljMH5
brew下载包速度慢,需修改源

  • Bash 终端配置
    # 替换brew.git:
    cd "$(brew --repo)"
    git remote set-url origin https://mirrors.aliyun.com/homebrew/brew.git
    # 替换homebrew-core.git:
    cd "$(brew --repo)/Library/Taps/homebrew/homebrew-core"
    git remote set-url origin https://mirrors.aliyun.com/homebrew/homebrew-core.git
    # 应用生效
    brew update
    # 替换homebrew-bottles:
    echo 'export HOMEBREW_BOTTLE_DOMAIN=https://mirrors.aliyun.com/homebrew/homebrew-bottles' >> ~/.bash_profile
    source ~/.bash_profile

恢复默认配置

# 重置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_BOTTLE_DOMAIN 环境变量

相关文章:

  • 2021-02-03
  • 2019-08-23
  • 2021-05-04
  • 2021-11-13
  • 2021-12-20
  • 2021-12-03
  • 2021-12-18
  • 2018-06-24
猜你喜欢
  • 2021-08-22
  • 2021-12-03
  • 2021-11-23
  • 2021-11-09
  • 2021-11-09
  • 2021-11-11
  • 2021-03-27
相关资源
相似解决方案