"import numpy" tries to load my own package
- by Sebastian
I have a python (2.7) project containing my own packages util and operator (and so forth).
I read about relative imports, but perhaps I didn't understand. I have the following directory structure:
top-dir/
util/__init__.py (empty)
util/ua.py
util/ub.py
operator/__init__.py
...
test/test1.py
The test1.py file contains
…