0

I am using Python 3.5 64 bit and Windows Machine. Normally i install packages using pip installer.

For blpapi library(bloomberg API), i used the steps mentioned in answer from following question Anaconda - Install blpapi in environment

Steps I followed:

conda create -n py35 python=3.5
activate py35
conda install -c macinv blpapi 

This worked fine. But it has created a separate Python Environment and Interpreter

C:\Users\bl00mb3rg\Miniconda3\envs\py35

Already i have another python interpreter which was created while intalling python 3.5 64 bit.

Which Interpreter i have to use while configuring python IDE. If i select Conda python Env, i am not able to use libraries such as 'pdblp' which i installed using pip

How to make Conda install libraries in existing python instead of creating new Environment.

4

3 回答 3

1

使用Anaconda Prompt安装

conda install -c mbonix blpapi

于 2017-07-24T03:25:40.130 回答
1

这与问题无关,但您不必使用conda;根据Bloomberg 的 API 库页面,您可以运行:

python -m pip install --index-url=https://bloomberg.bintray.com/pip/simple blpapi

从您现有的环境中。

于 2018-10-23T09:39:24.800 回答
1

https://anaconda.org/p-vg/blpapi/files

  1. 这是最新版本的blpapi 3.9.2
  2. 它有 python 3.6 和 2.7 的包
  3. windows 和 linux 都可以

conda install -c p-vg blpapi

于 2018-10-11T13:00:46.197 回答