Mac HomeBrew 切换阿里源

Mac HomeBrew 切换源

本人使用的版本:Mac OS 10.15.7 (19H2026)
在这里插入图片描述


    1.0 切换阿里云源【推荐】

    # 查看本地Mac  brew.git 当前源
    cd "(brew --repo)" && git remote -v
    origin	https://github.com/Homebrew/brew.git (fetch)
    origin	https://github.com/Homebrew/brew.git (push)
    
    # 查看本地Mac  homebrew-core.git 当前源
     cd "(brew --repo homebrew/core)" && git remote -v
    origin	https://github.com/Homebrew/homebrew-core.git (fetch)
    origin	https://github.com/Homebrew/homebrew-core.git (push)
    
    # 修改 brew.git 为阿里源
     git -C "(brew --repo)" remote set-url origin https://mirrors.aliyun.com/homebrew/brew.git
    
    # 修改 homebrew-core.git 为阿里源
     git -C "(brew --repo homebrew/core)" remote set-url origin https://mirrors.aliyun.com/homebrew/homebrew-core.git
    
    # zsh 替换 brew bintray 镜像
     echo 'export HOMEBREW_BOTTLE_DOMAIN=https://mirrors.aliyun.com/homebrew/homebrew-bottles' >> ~/.zshrc
     source ~/.zshrc
    
    # bash 替换 brew bintray 镜像
     echo 'export HOMEBREW_BOTTLE_DOMAIN=https://mirrors.aliyun.com/homebrew/homebrew-bottles' >> ~/.bash_profile
     source ~/.bash_profile
    
    # 刷新源
     brew update
    
    

    猜你喜欢

    转载自blog.csdn.net/jjc120074203/article/details/131068889