I am trying to import an .ipynb file from another directory.
After trying:
import sys
sys.path.append("../TheOtherFolder")
print(sys.path)
I can see that the required path is added in the "sys.path" successfully.
After trying to import the .ipynb file:
import import_ipynb
import test #this is a .ipynb file
Unfortunately, I still get "ModuleNotFoundError: No module named 'test'"