I am trying to import python-twitter on Eclipse with Python 2.7.3 and PyDev 2.5 I downloaded it as follows.
pip install twitter
Eclipse doesn't recognize it, instead saying:
Traceback (most recent call last):
File "/Users/Jen/Documents/workspace/drugs/src/marijuana.py", line 1, in <module>
import twitter as twitter
ImportError: No module named twitter
I have the same error when trying to import Matplotlib, Scipy, SimpleJSON and NLTK. In fact, the only module I can import is NumPy. So, I think the PyDev plugin for Eclipse might not know that these files were added to PYTHONPATH?
Any advice on how to proceed?