美文网首页
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

相关文章

  • 在 macOS Sierra系统(10.12.4)上安装 thr

    安装 在macOS上安装Thrift Thrift Mac上安装说明 mac 安装 thrift 首先参考官网安装...

  • thrift

    一、mac下安装brew updatebrew install thrift执行thrift -version,显...

  • Mac下thrift编译问题[转]

    最近打算了解一下thrift框架的使用,在mac下,使用命令brew install thrift 安装thrif...

  • Thrift Mac上安装说明

    参考Mac OS上安装thrift其他版本的安装我的安装包: 一、下载最新的thrift文件: thrift 0...

  • Mac下安装Thrift

    方法一: 1. 使用 brew 安装。 brew install thrift 如果没有 Homebrew,先安装...

  • mac 下安装thrift

    首先更新brew 为 中科大源 重置为官方源 安装 thrift

  • thrift安装和编写

    一、Thrift的安装(MAC) 1、安装Homebrew 注意 关于最新版mac(OSX High Sierra...

  • mac 安装 thrift

    我的mac 是10.11.6的版本 官方的安装手册http://thrift.apache.org/docs/in...

  • Mac 安装thrift

    一、安装依赖boost wget -c https://dl.bintray.com/boostorg/relea...

  • mac 安装thrift

    1、mac安装指定版本thrift,如果默认安装,则安装的是最新版本0.14.2,这样maven项目无法下载此版本...

网友评论

      本文标题:mac 下安装thrift

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