I'm new to PyDev and fairly rusty in Python. Trying to get back into it with a simple reddit app first. So here's my setup:
I have 2 PyDev projects: reddit
and pylons
(reddit api.py imports from pylons).
When I go into any file in the reddit
project I get "unresolved import" for anything that tries to import from pylons. In reddit
's PYTHONPATH, I've tried adding /pylons and /pylons/pylons, but whenever I refresh the project, PyDev seems to rename my references to /reddit and /reddit/pylons.
How do I fix this? How do I properly add the pylons
project into the PYTHONPATH of reddit
?