您需要根据链接的文档安装 Thrift :
The following are required in order to run the scoring package. [..] Apache Thrift (to run the TCP scoring service)
:
安装节俭
运行 TCP 模式的评分服务需要 Thrift,但不需要运行评分模块。Thrift 文档站点上提供了以下步骤:
https ://thrift.apache.org/docs/BuildingFromSource 。
$ sudo apt-get install automake bison flex g++ git libevent-dev \
libssl-dev libtool make pkg-config libboost-all-dev ant
$ wget https://github.com/apache/thrift/archive/0.10.0.tar.gz
$ tar -xvf 0.10.0.tar.gz
$ cd thrift-0.10.0
$ ./bootstrap.sh
$ ./configure
$ make
$ sudo make install
@编辑:
请检查您是否可以运行(在您拥有这些脚本的文件夹中):
$ source client_env/bin/activate
$ python -c 'from thrift.transport import TSocket'
如果您遇到相同的异常,请运行:
pip install -r client_requirements.txt
并尝试再次运行该脚本。