The configurator page is there, but there are no extensions there, other than the configurator itself.
So I redid the install(in a notebook) , like so :
!pip install https://github.com/ipython-contrib/jupyter_contrib_nbextensions/tarball/master
with the following results :
Collecting https://github.com/ipython-contrib/jupyter_contrib_nbextensions/tarball/master
Downloading https://github.com/ipython-contrib/jupyter_contrib_nbextensions/tarball/master
Requirement already satisfied: ipython_genutils in c:\users\rws\anaconda3\lib\site-packages (from jupyter-contrib-nbextensions==0.4.0)
Requirement already satisfied: jupyter_contrib_core>=0.3.3 in c:\users\rws\anaconda3\lib\site-packages (from jupyter-contrib-nbextensions==0.4.0)
Requirement already satisfied: jupyter_core in c:\users\rws\anaconda3\lib\site-packages (from jupyter-contrib-nbextensions==0.4.0)
Collecting jupyter_highlight_selected_word>=0.0.10 (from jupyter-contrib-nbextensions==0.4.0)
Downloading jupyter_highlight_selected_word-0.1.0-py2.py3-none-any.whl
Collecting jupyter_latex_envs>=1.3.8 (from jupyter-contrib-nbextensions==0.4.0)
Downloading jupyter_latex_envs-1.4.4.tar.gz (855kB)
Requirement already satisfied: jupyter_nbextensions_configurator>=0.4.0 in c:\users\rws\anaconda3\lib\site-packages (from jupyter-contrib-nbextensions==0.4.0)
Requirement already satisfied: nbconvert>=4.2 in c:\users\rws\anaconda3\lib\site-packages (from jupyter-contrib-nbextensions==0.4.0)
Requirement already satisfied: notebook>=4.0 in c:\users\rws\anaconda3\lib\site-packages (from jupyter-contrib-nbextensions==0.4.0)
Requirement already satisfied: pyyaml in c:\users\rws\anaconda3\lib\site-packages (from jupyter-contrib-nbextensions==0.4.0)
Requirement already satisfied: tornado in c:\users\rws\anaconda3\lib\site-packages (from jupyter-contrib-nbextensions==0.4.0)
Requirement already satisfied: traitlets>=4.1 in c:\users\rws\anaconda3\lib\site-packages (from jupyter-contrib-nbextensions==0.4.0)
Requirement already satisfied: lxml in c:\users\rws\anaconda3\lib\site-packages (from jupyter-contrib-nbextensions==0.4.0)
Requirement already satisfied: setuptools in c:\users\rws\anaconda3\lib\site-packages\setuptools-27.2.0-py3.6.egg (from jupyter_contrib_core>=0.3.3->jupyter-contrib-nbextensions==0.4.0)
Requirement already satisfied: ipython in c:\users\rws\anaconda3\lib\site-packages (from jupyter_latex_envs>=1.3.8->jupyter-contrib-nbextensions==0.4.0)
Requirement already satisfied: mistune!=0.6 in c:\users\rws\anaconda3\lib\site-packages (from nbconvert>=4.2->jupyter-contrib-nbextensions==0.4.0)
Requirement already satisfied: jinja2 in c:\users\rws\anaconda3\lib\site-packages (from nbconvert>=4.2->jupyter-contrib-nbextensions==0.4.0)
Requirement already satisfied: pygments in c:\users\rws\anaconda3\lib\site-packages (from nbconvert>=4.2->jupyter-contrib-nbextensions==0.4.0)
Requirement already satisfied: nbformat in c:\users\rws\anaconda3\lib\site-packages (from nbconvert>=4.2->jupyter-contrib-nbextensions==0.4.0)
Requirement already satisfied: entrypoints>=0.2.2 in c:\users\rws\anaconda3\lib\site-packages (from nbconvert>=4.2->jupyter-contrib-nbextensions==0.4.0)
Requirement already satisfied: bleach in c:\users\rws\anaconda3\lib\site-packages (from nbconvert>=4.2->jupyter-contrib-nbextensions==0.4.0)
Requirement already satisfied: pandocfilters>=1.4.1 in c:\users\rws\anaconda3\lib\site-packages (from nbconvert>=4.2->jupyter-contrib-nbextensions==0.4.0)
Requirement already satisfied: testpath in c:\users\rws\anaconda3\lib\site-packages (from nbconvert>=4.2->jupyter-contrib-nbextensions==0.4.0)
Requirement already satisfied: MarkupSafe>=0.23 in c:\users\rws\anaconda3\lib\site-packages (from jinja2->nbconvert>=4.2->jupyter-contrib-nbextensions==0.4.0)
Requirement already satisfied: six in c:\users\rws\anaconda3\lib\site-packages (from bleach->nbconvert>=4.2->jupyter-contrib-nbextensions==0.4.0)
Requirement already satisfied: html5lib!=0.9999,!=0.99999,<0.99999999,>=0.999 in c:\users\rws\anaconda3\lib\site-packages (from bleach->nbconvert>=4.2->jupyter-contrib-nbextensions==0.4.0)
Building wheels for collected packages: jupyter-latex-envs
Running setup.py bdist_wheel for jupyter-latex-envs: started
Running setup.py bdist_wheel for jupyter-latex-envs: finished with status 'done'
Stored in directory: C:\Users\RWS\AppData\Local\pip\Cache\wheels\8d\1a\c8\3a9f5e0105eb88e1972cd06fcca65d8b904dafe67afacc566b
Successfully built jupyter-latex-envs
Installing collected packages: jupyter-highlight-selected-word, jupyter-latex-envs, jupyter-contrib-nbextensions
Running setup.py install for jupyter-contrib-nbextensions: started
Running setup.py install for jupyter-contrib-nbextensions: finished with status 'done'
Successfully installed jupyter-contrib-nbextensions-0.4.0 jupyter-highlight-selected-word-0.1.0 jupyter-latex-envs-1.4.4
These extension would definitely be very nice to have, so any clues are appreciated.
Rob
Did you also follow the second step of the install, to copy CSS/js into jupyter data directory?
See https://github.com/ipython-contrib/jupyter_contrib_nbextensions#2-install-javascript-and-css-files for details
Yes, I did. But ultimately it solved itself by me doing a fresh install of everything.
In my case it was issue with installation using Anaconda :
conda install -c conda-forge jupyter_contrib_nbextensions
I had solved this issue by running pip installation commands:
pip install -e jupyter_contrib_nbextensions
jupyter contrib nbextension install --user
In my case it was issue with installation using Anaconda :
conda install -c conda-forge jupyter_contrib_nbextensionsI had solved this issue by running pip installation commands:
pip install -e jupyter_contrib_nbextensions jupyter contrib nbextension install --user
Thank you, it works.
For conda users: If you don not want to mix conda and pip "installations", simply removing (renaming) the directory
~/.local/share/jupyter
works too. (in linux of course)
Most helpful comment
In my case it was issue with installation using Anaconda :
conda install -c conda-forge jupyter_contrib_nbextensionsI had solved this issue by running pip installation commands: