I recently installed Anaconda3 and just started learning how to use Pandas , and I wanted to be able to work with Pandas in Eclipse.
First I tried to add a link to the site libraries at:
C:\Anaconda3\Lib\site-packages
And that seemed to work, allowing me to import numpy and Pandas . However, since I just used conda to update everything, my Python34 interpreter seemed to fail when I tried to run some code while numpy looking for my Python35 installation. For some reason this was located at:
C:\Users\myname\AppData\Local\Programs\Python\Python35-32
However, Anacondas installed a different version somewhere else. Going to:
Windows > Preferences > PyDev > Interpreters > Python Interpreter
and by clicking Quick Auto-Config , he found my version of Anacondas Python35, and then I just needed to figure out how to make my current project using the Python35 interpreter.
Hint: To do this, you need to go to the project properties by opening the project and choosing File > Properties or right-clicking the project to select Properties .
source share