I am trying to import a python class from another directory but it keeps showing "module not found"
MLJAR-SUPERVISED
├── examples
│ │── notebooks
│ └── scripts
│ └── target.py
└── supervised
└── source.py
I am trying to import a class evaluation
from source.py
to target.py
with this:
from supervised.source import evaluation
but it shows `ModuleNotFoundError: No module named 'supervised' What is the best way to do this in python 3.9 ?