I have a repo that looks like this
dev ---> common ---> utils.py
---> scripts --> upload_to_blob.py
It gives following error when I try to import utils from common
Traceback (most recent call last):
File "scheduled_scripts/upload_to_blob.py", line 6, in <module>
from common import utils
ModuleNotFoundError: No module named 'common'
I am using Python 3.6 env in Anaconda with base Python 2.7