Although I think this should be pretty simple I still can't make it run.
I have following folder structure:
├── apartment          
│   ├── src        
│       ├── train_model
│           ├── __init__.py 
│           ├── train_model.py
│           ├── utils.py
│       ├── interference.py
│       └── __init__.py
In utils.py I tried:
from src.interference import create_sample
Error: ModuleNotFoundError: No module named 'src'
from .interference import create_sample
Error: ImportError: attempted relative import with no known parent package
from interference import create_features_sample
ModuleNotFoundError: No module named 'interference'
What is the way to make it work? I am not a huge fan of non-pythonic ways as it looks dirty.
 
     
     
     
     
    