3

我正在尝试根据自述文件中的说明为 python 安装 blpapi-3.5.5,但是在运行时

python setup.py install

我收到以下错误:

running install
running build
running build_py
running build_ext
building 'blpapi._internals' extension 
gcc -pthread -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -fPIC -I/home/erlend/blpapi_cpp_3.8.8.1/include/include -I/home/erlend/anaconda/include/python2.7 -c blpapi/internals_wrap.cxx -o build/temp.linux-x86_64-2.7/blpapi/internals_wrap.o
cc1plus: warning: command line option ‘-Wstrict-prototypes’ is valid for C/ObjC but not for C++ [enabled by default]
blpapi/internals_wrap.cxx:3110:26: fatal error: blpapi_types.h: No such file or directory
 #include "blpapi_types.h"
                      ^
compilation terminated.
error: command 'gcc' failed with exit status 1
4

1 回答 1

6

BLPAPI Python SDK 是 C/C++ SDK 的包装器,作为 README 文件文档,您需要使该 SDK 可用(下载并解压),并设置 BLPAPI_ROOT 环境变量以指示 C/C++ SDK 的位置。

您指出的错误消息显示无法找到 C/C++ SDK 的头文件,因此配置不正确。请确保您在系统上解压了最新的 C/C++ SDK,并且您已将 BLPAPI_ROOT 变量设置为指向其位置。设置该变量后,命令:

ls $BLPAPI_ROOT/include

应生成头文件列表,包括 blpapi_types.h。

于 2015-08-21T21:33:54.540 回答