This is the minimal summary of this article for my archives.
Install jupyter notebooks locally (with --user
flag to make the jupyter directory writable) and the ipympl
lib, as well.
pip install jupyter --user
pip install ipympl --user
Note that that should've happened automatically anyway, but if not, you need to install ipywidgets with
pip install ipywidgets --user
.
Now, you need to enable the nbextensions
jupyter nbextension enable --py --sys-prefix widgetsnbextension
jupyter nbextension install --py --symlink --sys-prefix ipympl
You might also want to install the nbextensions configurator to keep an overview
jupyter contrib nbextension install --user
Also make sure that you enable auto save time as extension. As per this article, you just switch over to the extension tab in any jupyter notebook, and activate the
AutoSaveTime
extension.or:
edit
~/.local/share/jupyter/nbextensions/autosavetime/main.js
or~/Library/Jupyter/nbextensions/autosavetime/main.js
set
autosavetime_set_starting_interval: true
(is false per default)