Hi,
Most of my notebooks follow the same structure (i.e. load data, preprocessing, learn ML model, evaluate, etc.). I came across the jupytemplate package which allows to define a template for your notebooks. However, I can't seem to make it work in Databricks. I was able to install and enable the jupyter extension as follows:
In a notebook cell:
%sh
pip install jupy template
jupyter nbextension install --py jupytemplate --sys-prefix
jupyter nbextension enable jupytemplate --py --sys-prefix
However, when I created a new notebook afterwards it did not have the default template.
Does anyone know whether jupytemplate is supported?
Thanks!