美文网首页
mac下载homebrew

mac下载homebrew

作者: 摩登小鬼 | 来源:发表于2019-10-29 19:38 被阅读0次

    1、首先打开下面的链接 如果打不开说明你被墙了,自己解决一下

        https://raw.githubusercontent.com/Homebrew/install/master/install.sh
    

    2、把这个网页保存名为brew_install.rb的文件,保存的位置你随便,只要自己能找到。
    3、然后在终端进入存放这个文件的目录,然后终端输入

     ruby brew_install.rb 
    

    4、如果安装还是很卡,打开brew_install.rb文件

    把
    BREW_REPO = "https://github.com/Homebrew/brew".freeze
    CORE_TAP_REPO = "https://github.com/Homebrew/homebrew-core".freeze
    替换成
    BREW_REPO = "git://mirrors.ustc.edu.cn/brew.git".freeze
    CORE_TAP_REPO = "git://mirrors.ustc.edu.cn/homebrew-core.git".freeze
    然后执行
    ruby brew_install.rb 
    

    5、安装brew,在安装的时候,会卡在安装homebrewcore 界面执行下面的命令

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

    6、下载完成

    更新
    1、自动脚本(全部国内地址)(在Mac os终端中复制粘贴回车下面脚本)
    (已经安装过brew的请自行备份后,再运行下面的安装脚本!!!!!)
    安装脚本:

      /bin/zsh -c "$(curl -fsSL https://gitee.com/cunkai/HomebrewCN/raw/master/Homebrew.sh)"
    

    卸载脚本:

    /bin/zsh -c "$(curl -fsSL https://gitee.com/cunkai/HomebrewCN/raw/master/HomebrewUninstall.sh)"
    

    相关文章

      网友评论

          本文标题:mac下载homebrew

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