We have a professor who has created Jupyter notebooks (*.ipynb) for his assignments, and would like the OOD Jupyter Notebook app to start the notebook directly. It is possible from the command line as:
jupyter notebook path_to/file.ipynb
But, if I put the same into the template/script.sh of our Jupyter NB app:
jupyter notebook --config="${CONFIG_FILE}" path_to/file.ipynb
the notebook does not start, only the generic Jupyter entry page.
I suspect that’s because of the use of the --config, but, I can’t gather from the docs if there’s a config entry for the notebook file, or, what else can be causing the notebook not to start when opening the app.
Anyone has any thoughts about this, or have succeeded in this?
Ultimately, we’d like to run the notebook too, kind of what Binder does using Voila, but, Voila does not accept the Jupyter server --config option that we need in the OOD to set things like the port, no open_browser, etc.
Thanks,
MC