My directory structure looks like this:
I have some utility functions in util/misc.py
that I want to import in compose_dataset.py
. However, I cannot get the import statement to work.
I'm working on Windows Python3.5.4, so from what I've read I don't need __init__.py
files anymore. The project folder is a child of my PYTHONPATH
that points solely to E:\Python. So far, I tried:
from misc import *
from util import *
from util.misc import *
from ..util.misc import *
and either received ImportError: No module named 'xyz'
or ImportError: attempted relative import with no known parent package
. I also tried adding init-files but I have no experience with those and simply added one to every directory, but (surprisingly) that didn't work either.
What am I missing here??