美文网首页
homebrew 源

homebrew 源

作者: 想溜了的蜗牛 | 来源:发表于2021-03-05 09:44 被阅读0次

    2021.3.5
    昨天用了下腾讯软件源, 感觉速度还可以,执行 update 比之前动也不动要快不少。

    配置方法:

    // brew.git:
    $ cd "$(brew --repo)"
    $ git remote set-url origin https://mirrors.cloud.tencent.com/homebrew/brew.git
    
    // homebrew-core.git:
    $ cd "$(brew --repo)/Library/Taps/homebrew/homebrew-core"
    $ git remote set-url origin https://mirrors.cloud.tencent.com/homebrew/homebrew-core.git
    

    homebrew-bottles 替换
    参考链接

    bash用户替换方法

    $ echo 'export HOMEBREW_BOTTLE_DOMAIN=https://mirrors.cloud.tencent.com/homebrew-bottles' >> ~/.bash_profile
    $ source ~/.bash_profile
    

    zsh用户替换方法

    $ echo 'export HOMEBREW_BOTTLE_DOMAIN=https://mirrors.cloud.tencent.com/homebrew-bottles' >> ~/.zshrc
    $ source ~/.zshrc
    

    可以使用 chsh 查看当前是哪种 shell

    $ chsh
    

    相关文章

      网友评论

          本文标题:homebrew 源

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