我正在尝试使用Bloomberg API库(https://www.bloomberg.com/professional/support/api-library/)中描述的步骤安装blpapi (python 3.7.3)。
我安装了DAPI(也来自Bloom API库),并将粘贴的blpapi3_32.dll和blpapi3_64.dll复制到它们的特定文件夹(C:\blp)。基本上,我只是遵循了本页面中描述的步骤:https://medium.com/@johann_78792/getting-started-with-bloombergs-python-desktop-api-5fd083b4193a
当我执行命令时:
python -m pip install --index-url=https://bcms.bloomberg.com/pip/simple/ blpapi我得到以下错误:
ERROR : Could not find a version that satisfies the requirement blpapi
ERROR : No matching distribution found for blpapi 如果我是对的,python版本应该不是问题,我将PIP升级到了最新版本,我还尝试使用以下命令安装blpapi
python -m pip install blpapi我成功地安装了blpapi-0.0.0 (可以在Pypi.org中找到),但是python没有导入它,并给出了这个错误
ImportError: No module named blpapi任何关于我如何管理这些错误的想法都将是很棒的。
https://stackoverflow.com/questions/66233313
复制相似问题