美文网首页
mac 下安装thrift

mac 下安装thrift

作者: 夜空最亮的9星 | 来源:发表于2022-03-21 16:50 被阅读0次

    首先更新brew 为 中科大源

    # 替换各个源
    $ git -C "$(brew --repo)" remote set-url origin https://mirrors.ustc.edu.cn/brew.git
    $ git -C "$(brew --repo homebrew/core)" remote set-url origin https://mirrors.ustc.edu.cn/homebrew-core.git
    $ git -C "$(brew --repo homebrew/cask)" remote set-url origin https://mirrors.ustc.edu.cn/homebrew-cask.git
    
    # zsh 替换 brew bintray 镜像
    $ echo 'export HOMEBREW_BOTTLE_DOMAIN=https://mirrors.ustc.edu.cn/homebrew-bottles' >> ~/.zshrc
    $ source ~/.zshrc
    
    # bash 替换 brew bintray 镜像
    $ echo 'export HOMEBREW_BOTTLE_DOMAIN=https://mirrors.ustc.edu.cn/homebrew-bottles' >> ~/.bash_profile
    $ source ~/.bash_profile
    
    # 刷新源
    $ brew update
    
    

    重置为官方源

    # 重置 brew.git 为官方源
    $ git -C "$(brew --repo)" remote set-url origin https://github.com/Homebrew/brew.git
    
    # 重置 homebrew-core.git 为官方源
    $ git -C "$(brew --repo homebrew/core)" remote set-url origin https://github.com/Homebrew/homebrew-core.git
    
    # 重置 homebrew-cask.git 为官方源
    $ git -C "$(brew --repo homebrew/cask)" remote set-url origin https://github.com/Homebrew/homebrew-cask
    
    # zsh 注释掉 HOMEBREW_BOTTLE_DOMAIN 配置
    $ vi ~/.zshrc
    # export HOMEBREW_BOTTLE_DOMAIN=xxxxxxxxx
    
    # bash 注释掉 HOMEBREW_BOTTLE_DOMAIN 配置
    $ vi ~/.bash_profile
    # export HOMEBREW_BOTTLE_DOMAIN=xxxxxxxxx
    
    # 刷新源
    $ brew update
    
    

    安装 thrift

    brew install 
    brew install thrift
    
    thrift -version
    Thrift version 0.16.0
    

    相关文章

      网友评论

          本文标题:mac 下安装thrift

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