mac安装homebrew
Posted AI算法攻城狮
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mac安装homebrew相关的知识,希望对你有一定的参考价值。
使用官方https://brew.sh/index_zh-cn的安装地址会存在问题,下面使用中科院的镜像来安装
git clone git://mirrors.ustc.edu.cn/homebrew-core.git/ /usr/local/Homebrew/Library/Taps/homebrew/homebrew-core --depth=1
// 把homebrew-core的镜像地址也设为中科院的国内镜像
cd "$(brew --repo)"
git remote set-url origin https://mirrors.ustc.edu.cn/brew.git
cd "$(brew --repo)/Library/Taps/homebrew/homebrew-core"
git remote set-url origin https://mirrors.ustc.edu.cn/homebrew-core.git
// 更新
brew update
// 使用
brew install node
Mac更新完系统后使用homebrew就报错:
使用brew upgrade
后会重新更新homebrew-core
解决方法
删除homebrew-core后更新即可
cd /usr/local/Homebrew/Library/Taps/homebrew
rm -rf homebrew-core
brew upgrade
以上是关于mac安装homebrew的主要内容,如果未能解决你的问题,请参考以下文章