I am trying to run notebook_torun.ipynb
in test_notebook.ipynb
within Jupyter Lab Domino from a different directory but have failed. The structure looks as such:
root -> mnt -> test_notebook.ipynb
and I want to run
root -> repos -> test-directory -> notebook_torun.ipynb.
My attempt looks as such:
%run ../repos/test-directory.notebook_torun.ipynb
However everytime the command seems to append .py
on the end so the error is File ../repos/test-directory.notebook_torun.ipynb.py not found.
Is there anyway to stop this behaviour so that it knows it is a notebook? Thanks