美文网首页
MacOS Homebrew 安装、更新慢解决方法

MacOS Homebrew 安装、更新慢解决方法

作者: Kindem | 来源:发表于2020-04-08 22:22 被阅读0次

    转自 Kindem的博客,欢迎转载,但要注明出处

    🍖 安装

    如果使用 Homebrew 官方的安装脚本进行安装,会发现安装十分缓慢,我们可以更换安装脚本中设置的仓库路径来加速安装过程。

    首先先将官方的脚本下载下来,命名为 install

    curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install >> install
    

    使用 vim 或者其他文本编辑器打开 install 脚本,修改:

    BREW_REPO
    

    一行为:

    BREW_REPO = "https://mirrors.ustc.edu.cn/brew.git".freeze
    

    保存后重新使用 ruby 运行脚本:

    ruby ./install
    

    脚本会飞速安装,然后停顿在 homebrew-core 的下载过程,此时使用 ^C 快捷键强制结束进程,将 homebrew-core 手动下载到 homebrew 安装目录:

    git clone git://mirrors.ustc.edu.cn/homebrew-core.git/ /usr/local/Homebrew/Library/Taps/homebrew/homebrew-core --depth=1
    

    🧀 换源

    完成上面的步骤之后,使用如下命令完成换源:

    # change brew source
    cd $(brew --repo)
    git remote set-url origin https://mirrors.ustc.edu.cn/brew.git
    
    # change brew-core source
    cd "$(brew --repo)/Library/Taps/homebrew/homebrew-core"
    git remote set-url origin https://mirrors.ustc.edu.cn/homebrew-core.git
    

    完成换源之后,再执行更新指令一次:

    brew update
    

    看看是不是比以前快了许多呢?

    相关文章

      网友评论

          本文标题:MacOS Homebrew 安装、更新慢解决方法

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