Mac 下homebrew的使用

大兔子大兔子 提交于 2021-02-08 14:33:09
  1. 更换国内镜像,提高安装速度
    #下载homebrew安装脚本
    curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install >> brew_install
    
    #切换国内镜像
    替换下载的brew_install脚本中的
    BREW_REPO = “https://github.com/Homebrew/brew”.freeze
    为
    BREW_REPO = “https://mirrors.ustc.edu.cn/brew.git “.freeze

     

  2. 安装homebrew
    ruby brew_install

     

  3. 更换国内镜像,提高homebrew下软件安装速度
    cd "$(brew --repo)"
    git remote set-url origin https://mirrors.tuna.tsinghua.edu.cn/git/homebrew/brew.git
    
    cd "$(brew --repo)/Library/Taps/homebrew/homebrew-core"
    git remote set-url origin https://mirrors.tuna.tsinghua.edu.cn/git/homebrew/homebrew-core.git

     

  4. 安装brew-cask
    brew install caskroom/cask/brew-cask
    
    cd "$(brew --repo)"/Library/Taps/homebrew/homebrew-cask
    git remote set-url origin https://mirrors.ustc.edu.cn/homebrew-cask.git
    
    echo 'export HOMEBREW_BOTTLE_DOMAIN=https://mirrors.ustc.edu.cn/homebrew-bottles' >> ~/.bash_profile

     

  5. 更新并检查安装
    brew update
    brew doctor
标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!