美文网首页
安装homebrew

安装homebrew

作者: _灯下影子 | 来源:发表于2021-02-21 22:06 被阅读0次
    Mac下国内安装Homebrew教程

    Homebrew是一款包管理工具,目前支持macOS和linux系统。主要有四个部分组成: brew、homebrew-core 、homebrew-cask、homebrew-bottles。

    说明

    主要介绍Homebrew安装方式以及如何加速访问。

    1. 脚本说明

    Homebrew默认安装脚本:

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

    如果你等待一段时间之后遇到下面提示,就说明无法访问官方脚本地址:
    curl: (7) Failed to connect to raw.githubusercontent.com port 443: Operation timed out
    请使用下面的脚本:

    /usr/bin/ruby -e "$(curl -fsSL https://cdn.jsdelivr.net/gh/ineo6/homebrew-install/install)"
    
    2. 运行命令安装
    /usr/bin/ruby -e "$(curl -fsSL https://cdn.jsdelivr.net/gh/ineo6/homebrew-install/install)"
    

    如果命令执行中卡在下面信息:

    ==> Tapping homebrew/core
    Cloning into '/usr/local/Homebrew/Library/Taps/homebrew/homebrew-core'...
    

    请Command + C中断脚本执行如下命令:

    cd "$(brew --repo)/Library/Taps/"
    mkdir homebrew && cd homebrew
    git clone git://mirrors.ustc.edu.cn/homebrew-core.git
    

    成功执行之后继续重复执行前文的安装命令。

    最后看到==> Installation successful!就说明安装成功了。
    最最后执行:

    brew update
    

    cask同样也有首次下载缓慢的问题,解决方法大致同上:

    cd "$(brew --repo)/Library/Taps/"
    cd homebrew
    git clone https://mirrors.ustc.edu.cn/homebrew-cask.git
    
    3. 卸载Homebrew

    使用官方脚本同样会遇到uninstall地址无法访问问题,可以替换为下面脚本:

    /usr/bin/ruby -e "$(curl -fsSL https://cdn.jsdelivr.net/gh/ineo6/homebrew-install/uninstall)"
    
    问题汇总:

    Error: homebrew-core is a shallow clone.

    相关文章

      网友评论

          本文标题:安装homebrew

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