In [1]:
pwd


/Users/mbp/Documents/my-project/python-snippets/notebook/dir_import_test

In [2]:
python3 dir/main_absolute.py


-- mod1.func is called
-- dir_for_mod.mod2.func is called

In [3]:
cd dir

In [4]:
pwd


/Users/mbp/Documents/my-project/python-snippets/notebook/dir_import_test/dir

In [5]:
python3 main_absolute.py


Traceback (most recent call last):
  File "main_absolute.py", line 1, in <module>
    import mod1
ModuleNotFoundError: No module named 'mod1'