thrift安装

1. 安装依赖工具和库

sudo apt-get install automake bison flex g++ git libboost-all-dev libevent-dev libssl-dev libtool make pkg-config

2. 安装Thrift编译器和程序库

可以从https://thrift.apache.org/download下载Thrift源文件:

  • thrift-0.11.0.tar.gz 是可以在Linux或Mac安装的源文件
  • Thrift compiler for Windows (thrift-0.11.0.exe) 是Windows的安装文件
(1)解压缩源文件
tar -zxvf thrift-0.11.0.tar.gz
(2)配置安装过程
cd thrift-0.11.0
./configure --prefix=/usr/local/ --without-php --without-java --without-perl --without-nodejs
--prefix表示安装到的路径
--without-PACKAGE表示不安装PACKAGE语言的库,如--without-php表示不安装php的Thrift基础程序库
其他configure选项参数可以通过 ./configure --help进行查看
(3)解析来执行
sudo make
(4)安装
sudo make install
(5)验证
执行如下命令
thrift -version

3. 注意

  • 安装成功后对于选择安装的语言,调用Thrift的程序库实际上也安装完成。但是对于Python语言,Thrift会附带安装适用于Python 2的程序库(包),缺少了Python 3的程序库;同时,对于Ubuntu系统(或Debian系统),默认python的搜索包路径在dist-packages子目录下,而Thrift安装的Python程序包路径在site-packages子目录下,python程序不能直接导入thrift包。所以,对于Python语言,我们可以使用下面的方法自己安装thrift包。
    安装Thrift 的Python包 :pip / pip3 install thrift

你可能感兴趣的:(thrift安装)