My situation is similar to one in this question... The difference is,
In our python/django project, we have a directory called utils, which keeps basic functions...
Sometimes, we need to test some modules by running thm from console like
python myproject/some_module.py
It is all good, until python tries to import something from our utils directory...
from utils.custom_modules import some_function
ImportError: No module named custom_modules
I check my python path, and our project is on the list, each folder under the project file has __init__.py files, and when i run ipython within project directory... Everything is ok, otherwise, python imports from its own utils directory...
My collegues use the sama method without any problem, but it throws ImportError on my environment... What could be the problem that all of us was missing?
UPDATE: My project directory, and each sub-drectory have __init__.py file, and i can import other modules from my project without any problem... When i am in a diffrent folder than my procekt and i run ipython, a such import have no problem...
from someothermodule.submodule imprort blahblahblah
But, when it comes to importing utils, it fails...
UPATE 2: What caused the problem was the utils directory under django folder, which is also in the python path...
from .utils.custom_modules import some_function– agf Aug 18 '11 at 11:53ValueError: Attempted relative import in non-packageerror... – FallenAngel Aug 18 '11 at 12:13__init__.pyto it. If you want to do a relative import, you're treating it as a package already, and it's proper to make it one. – agf Aug 18 '11 at 12:15__init__.pyfile, an empty one... But that must be enough for python to treat it like a python directory as far as i know... – FallenAngel Aug 18 '11 at 12:26utilsdirectory have an__init__.py? It needs to be a subpackage too. Every directory of modules is being used as a package and needs to be made one. – agf Aug 18 '11 at 12:28