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.