I have the following directory structure
/home/project/src/numeric.py
/home/project/test/test.py
I am in trying to run test.py by importing numeric.py:
import src.numeric as n
Python is giving me:
ModuleNotFoundError: No module named 'src'
Currently I am in the directory
$ cd /home/project/test/
$ python3 test.py
Is there something that I am missing?