I wrote some Python programs about 7 or 8 years ago and I haven't touched them since, although they are still in heavy use by my company.
We have moved to a new server, and I'm trying to set that environment up. I have created all of the code, but apparently I have some sort of path problem that I don't remember how to solve. I haven't written any Python at all in at least 6 years.
At the top of this program I'm trying to execute, I have this:
from mycompany.initializer import Configurator
I'm running this program from a directory called:
/usr/code/myapp/migrate
The "mycompany" python module is located in:
/usr/code/mycompany
What path or other variable do I need to export in my user account so that above program can find the appropriate Python module?