美文网首页
homebrew更换中科大源快速安装

homebrew更换中科大源快速安装

作者: Hello_Johnny | 来源:发表于2022-10-13 02:48 被阅读0次

    最近学习flutter 着手安装开发环境
    安装homebrew的时候 各种报错都遇到了一遍
    因为众所周知的原因 官方的代码仓库访问不稳定导致
    后面尝试了码云上的一键安装的脚本 也一样报错
    最终在查看了各种文档之后整理出一套快速安装的方法
    分享一下 为大家避坑 环境为英特尔芯片的mac os

    1.在安装之前设置环境变量

    #设置环境变量 设置中科大源
    export HOMEBREW_BREW_GIT_REMOTE="https://mirrors.ustc.edu.cn/brew.git"
    export HOMEBREW_CORE_GIT_REMOTE="https://mirrors.ustc.edu.cn/homebrew-core.git"
    export HOMEBREW_BOTTLE_DOMAIN="https://mirrors.ustc.edu.cn/homebrew-bottles"
    
    #检查环境变量是否设置成功
    env
    

    2.用jsdelivr CDN的安装文件安装Homebrew

    #从jsdelivr CDN加速下载安装脚本安装Homebrew(访问github失败时使用)
    /bin/bash -c "$(curl -fsSL https://cdn.jsdelivr.net/gh/Homebrew/install@HEAD/install.sh)"
    #github上的官方安装文件(如果访问正常可以使用)
    /bin/bash -c "$(curl -fsSL https://github.com/Homebrew/install/raw/HEAD/install.sh)"
    

    3.安装Homebrew cask

    #mac用户安装Homebrew cask软件仓库
    brew tap --custom-remote --force-auto-update homebrew/cask https://mirrors.ustc.edu.cn/homebrew-cask.git
    

    4.安装Homebrew cask(根据需求决定是否安装)

    #安装Homebrew cask其他版本软件仓库,提供使用人数多的、需要的版本不在 cask 仓库中的应用。(根据需求决定是否安装)
    brew tap --custom-remote --force-auto-update homebrew/cask-versions https://mirrors.ustc.edu.cn/homebrew-cask-versions.git
    

    5.更新homebrew并检查配置

    #应用brew配置
    brew update-reset
    
    #更新homebrew
    brew update
    
    #查看homebrew配置
    brew config
    

    6.永久替换中科大源

    #查看shell模式
    echo $SHELL
    
    # bash 用户
    echo 'export HOMEBREW_BREW_GIT_REMOTE="https://mirrors.ustc.edu.cn/brew.git"' >> ~/.bash_profile
    echo 'export HOMEBREW_CORE_GIT_REMOTE="https://mirrors.ustc.edu.cn/homebrew-core.git"' >> ~/.bash_profile
    echo 'export HOMEBREW_BOTTLE_DOMAIN="https://mirrors.ustc.edu.cn/homebrew-bottles"' >> ~/.bash_profile
    
    # zsh 用户
    echo 'export HOMEBREW_BREW_GIT_REMOTE="https://mirrors.ustc.edu.cn/brew.git"' >> ~/.zshrc
    echo 'export HOMEBREW_CORE_GIT_REMOTE="https://mirrors.ustc.edu.cn/homebrew-core.git"' >> ~/.zshrc
    echo 'export HOMEBREW_BOTTLE_DOMAIN="https://mirrors.ustc.edu.cn/homebrew-bottles"' >> ~/.zshrc
    
    #bash用户检查永久配置是否成功
    cat ~/.bash_profile
    #zsh用户检查永久配置是否成功
    cat ~/.zshrc
    

    卸载homebrew

    #从码云下载脚本卸载
    /bin/bash -c "$(curl -fsSL https://gitee.com/ineo6/homebrew-install/raw/master/uninstall.sh)"
    #从码云下载脚本卸载(仅限mac os)
    /bin/zsh -c "$(curl -fsSL https://gitee.com/cunkai/HomebrewCN/raw/master/HomebrewUninstall.sh)"
    

    *一键安装homebrew(替换了中科大源)

    #作者修改了中科大源 没有安全风险(如介意请使用上面的安装步骤)
    /bin/bash -c "$(curl -fsSL https://gitee.com/ineo6/homebrew-install/raw/master/install.sh)"
    

    Homebrwe常用命令分享

    #安装软件(将xxx替换为软件名)
    brew install xxx
    
    #卸载软件
    brew uninstall xxx
    
    #搜索软件
    brew search xxx
    
    #更新软件
    brew upgrade xxx
    
    #查看已安装列表
    brew list
    
    #更新brew
    brew update
    
    #清理所有包的旧版本
    brew cleanup
    
    #清理指定包的旧版本
    brew cleanup $FORMULA
    
    #查看可清理的旧版本包,不执行实际操作
    brew cleanup -n
    

    相关文章

      网友评论

          本文标题:homebrew更换中科大源快速安装

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