Really sorry if this is an elementary question, but I am having trouble selecting the appropriate project interpreter in PyCharm.
I go into Preferences
and click on Project Interpreter
, and I've tried selecting the following:
/usr/bin/python/
/usr/bin/python27/
/usr/bin/pythonw/
However, none of these paths seem to have knowledge of my libraries installed. For example, I have pandas installed. When I open idle
it recognizes it perfectly when I import pandas as pd
. But, when I try to run my script in PyCharm, it throws an import error.
What is the appropriate path to run my interpreter so that it has knowledge of all of my packages?
Or, is there a way to give it multiple paths to run an interpreter?
Or, how do I find out what path the interpreter for idle
is running with?
Thanks. I'm using Mac, OSX Yosemite.