美文网首页
解决macos 安装homebrew速度慢

解决macos 安装homebrew速度慢

作者: sipeiouyang | 来源:发表于2019-10-25 11:16 被阅读0次

    问题描述

    安装的homebrew的时候下载速度超级慢,解决办法是更换homebrew的下载源

    操作步骤

    打开终端,输入:

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

    执行后就会在当前用户目录下下载一个brew_install文件,然后vim修改文件中的下载源地址为清华大学的镜像地址

    BREW_REPO = "https://mirrors.tuna.tsinghua.edu.cn/git/homebrew/brew.git".freeze
    

    之后执行

    /usr/bin/ruby brew_install
    

    我的mac执行到这一步之后homebrew就安装好了。

    更换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
    

    ok啦!

    卸载homebrew直接执行下面命令即可

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

    homebrew几个常用命令

    查看homebrew版本
    brew -v
    查看已安装的包
    brew list
    安装包
    brew install packageName
    卸载包
    brew uninstall packageName
    查找包
    brew searck packageName
    查看包信息
    brew info packageName 
    更新homebrew
    brew update
    诊断homebrew
    brew doctor
    查看帮助信息
    brew -h
    

    相关文章

      网友评论

          本文标题:解决macos 安装homebrew速度慢

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