美文网首页python 学习日记
HomeBrew 安装 国内源

HomeBrew 安装 国内源

作者: MrHamster | 来源:发表于2016-11-20 22:54 被阅读1037次

安装

 /usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"

  • 清华 (效果不错)

    • update
      https://mirrors.tuna.tsinghua.edu.cn/help/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
      
      brew update
      
  • Homebrew-bottles

    • 临时替换

      export HOMEBREW_BOTTLE_DOMAIN=https://mirrors.tuna.tsinghua.edu.cn/homebrew-bottles
      
    • 长期替换

      echo 'export HOMEBREW_BOTTLE_DOMAIN=https://mirrors.tuna.tsinghua.edu.cn/homebrew-bottles' >> ~/.bash_profile
      source ~/.bash_profile
      

OK, 现在看起来好多了,开工吧:)


  • changeLog
    • update: 17 Jan 2017
    • init: 20 Nov 2016

相关文章

网友评论

    本文标题:HomeBrew 安装 国内源

    本文链接:https://www.haomeiwen.com/subject/moiypttx.html