python blpapi安装错误
python blpapi installation error
我正在尝试根据 README 中的说明为 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
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。
我正在尝试根据 README 中的说明为 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
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。