First off, I'm pretty new so I hope I hadn't missed anything too trivial.
Here's a small preface with lots of info: I'm using Windows & Python 2.7. I've been using an open-source module named pybrain, which I need to change pretty much for my own purposes. So far I've been changing it directly from the python site-packages folder, but I guess it's a pretty messy way to work, so I decided to try and re-do thing so as to launch it from a different folder. I've also decided to start using Aptana (which as far as I can gather is Eclipse-based enough for the same solutions to apply) instead of the messier but simpler "Spyder" I've been using so far.
Pybrain is a pretty layered module with lots of different subfolders, e.g.: pybrain --> subfolder1 --> subfolder2 ...
So far I've figured these out: - I've removed the path to the pybrain folder in site-packages from the PYTHONPATH in aptana project. - I've added the path to the new project folder.
This works for some imports, namely, the ones that only reference relative paths inside the subfolders, e.g. I can import from things in subfolder1 if I write a module in the main folder. However, whenever I try to import things from the other subfolder - I can't use "pybrain" in the hierarchy: from pybrain.subfolder2 import * doesn't work in subfolder1.
And here is my question: How do I configure "pybrain" to be a usable name in the code, just as it was when I had pybrain in the site-packages folder?