对thrift版本降级(mac)
brew tap-new $USER/local-tap
brew extract --version='0.11.0' thrift $USER/local-tap
brew install thrift@0.11.0
brew list thrift@0.11 --- 查看安装路径
brew info thrift
查看thrift 版本
thrift -version
方法二:
通过brew 安装依赖包
brew install boost openssl libevent
注:直接通过brew安装bison的时候(thrift-0.9.3版本及以上),会报“configure: error: Bison version 2.5 or higher must be installed on the system!”,故需要直接下载tar包安装
3)安装bison 2.5版本以上
bison链接:http://www.gnu.org/software/bison/
wget http://ftp.gnu.org/gnu/bison/bison-2.5.tar.gz
tar -zxvf bison-2.5.tar.gz
cd bison-2.5
./configure
make && make install
二、安装thrift
thrift链接:http://archive.apache.org/dist/thrift/
wget http://archive.apache.org/dist/thrift/0.9.3/thrift-0.9.3.tar.gz
tar -zxvf thrift-0.9.3
cd thrift-0.9.3
./configure
make
make install