MAC OS系统替换homebrew使用阿里云的镜像源

替换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

npm 改淘宝源,//将registry设置为淘宝镜像

npm config set registry http://registry.npm.taobao.org          

查看registry

npm config get registry

猜你喜欢

转载自www.cnblogs.com/brianlai/p/10987986.html