Reputation: 64054
According to this link we can get TOC/Reference toolbar in Jupyter:
But why mine those 3 buttons don't appear? How can I enable them?
I tried installing calico. Using this
$ sudo ipython install-nbextension https://bitbucket.org/ipre/calico/downloads/calico-document-tools-1.0.zip
Password:
downloading https://bitbucket.org/ipre/calico/downloads/calico-document-tools-1.0.zip to /tmp/tmpAG0vDt/calico-document-tools-1.0.zip
extracting /tmp/tmpAG0vDt/calico-document-tools-1.0.zip to /usr/local/share/jupyter/nbextensions
Then do this which give me failure.
In [1]: import IPython
In [2]: IPython.load_extensions('calico-document-tools');
---------------------------------------------------------------------------
AttributeError Traceback (most recent call last)
<ipython-input-2-0e54e8411271> in <module>()
----> 1 IPython.load_extensions('calico-document-tools');
AttributeError: 'module' object has no attribute 'load_extensions'
[1]: http://jupyter.cs.brynmawr.edu/hub/dblank/public/Jupyter%20Notebook%20Users%20Manual.ipynb#1.-Getting-to-Know-your-Jupyter-Notebook's-Toolbar
[2]: https://jupyter.org/
Upvotes: 2
Views: 796
Reputation: 4219
The functionality you are talking about don't come by default with Jupyter notebook.
There are some repos where you can find extensions that can be 'easily' installed to improve the basic functionality of the notebook. Here you can find some extensions ready to be installed:
Upvotes: 3