jupyter_nbextensions_configurator icon indicating copy to clipboard operation
jupyter_nbextensions_configurator copied to clipboard

No new extensions are showing up in nbextension manager

Open matt-proof opened this issue 4 years ago • 11 comments

I saw this stack overflow post and tried installing the nbextensions configurator. I ran both installation paths several times, restarted my notebook and my machine several times, and I'm still not seeing any new nbextensions except for a few very basic ones: image Any idea what is going on here? I'd especially like to get the initialization cells working.

matt-proof avatar May 06 '21 18:05 matt-proof

He, Boy,.I met the same problem! I have tried many version of notebook but got no great result. Hoping someone can help us..

949V6%P)C@8N2R5HM YEM

kuangsangudu avatar May 08 '21 16:05 kuangsangudu

Hi guys! this problem bothered me for a long time. Many people raised this issue, like #118 and #65.

If you use Anaconda, after browsering many many solutions, here is my approach.

First, run "conda install -c conda-forge jupyter_contrib_nbextensions" in Anaconda prompt; After finishing the first step, run "jupyter contrib nbextension install --user" in Anaconda prompt; After finishing the second step, run "jupyter nbextensions_configurator enable --user" in Anaconda prompt;

Retart Jupyter notebook, you should see everything.

lixm1121 avatar May 11 '21 07:05 lixm1121

Hi guys! this problem bothered me for a long time. Many people raised this issue, like #118 and #65.

If you use Anaconda, after browsering many many solutions, here is my approach.

First, run "conda install -c conda-forge jupyter_contrib_nbextensions" in Anaconda prompt; After finishing the first step, run "jupyter contrib nbextension install --user" in Anaconda prompt; After finishing the second step, run "jupyter nbextensions_configurator enable --user" in Anaconda prompt;

Retart Jupyter notebook, you should see everything.

Thank you very much!

kuangsangudu avatar May 11 '21 07:05 kuangsangudu

@lixm1121 Many thx also from me

UltimateLaForsch avatar Jun 13 '21 17:06 UltimateLaForsch

Hi guys! this problem bothered me for a long time. Many people raised this issue, like #118 and #65.

If you use Anaconda, after browsering many many solutions, here is my approach.

First, run "conda install -c conda-forge jupyter_contrib_nbextensions" in Anaconda prompt; After finishing the first step, run "jupyter contrib nbextension install --user" in Anaconda prompt; After finishing the second step, run "jupyter nbextensions_configurator enable --user" in Anaconda prompt;

Retart Jupyter notebook, you should see everything.

This solved my problem. The command "jupyter contrib nbextension install --user" seems to be the key.

alcor4ever avatar Aug 05 '21 17:08 alcor4ever

Hi guys! this problem bothered me for a long time. Many people raised this issue, like #118 and #65.

If you use Anaconda, after browsering many many solutions, here is my approach.

First, run "conda install -c conda-forge jupyter_contrib_nbextensions" in Anaconda prompt; After finishing the first step, run "jupyter contrib nbextension install --user" in Anaconda prompt; After finishing the second step, run "jupyter nbextensions_configurator enable --user" in Anaconda prompt;

Retart Jupyter notebook, you should see everything.

Thank you! This solved the issue for me, using conda:)

simbru avatar Nov 25 '21 16:11 simbru

Thanks a lot~

kkatcode avatar Dec 06 '21 12:12 kkatcode

I had this and the method suggested by simbru didn't work. I think its because at some point the jupyter/scipy-notebook may have started using jupyter-lab instead of jupyter-notebook.

Anyway, I added the following to my docker-compose file to over-ride the default entrypoint and the NBextensions tab showed up.

entrypoint: ["jupyter", "notebook", "--port=8888", "--ip=0.0.0.0"]

kbroughton avatar Jun 16 '22 01:06 kbroughton

Hi guys! this problem bothered me for a long time. Many people raised this issue, like #118 and #65.

If you use Anaconda, after browsering many many solutions, here is my approach.

First, run "conda install -c conda-forge jupyter_contrib_nbextensions" in Anaconda prompt; After finishing the first step, run "jupyter contrib nbextension install --user" in Anaconda prompt; After finishing the second step, run "jupyter nbextensions_configurator enable --user" in Anaconda prompt;

Retart Jupyter notebook, you should see everything.

It works for me, Thanks a lot!

zhengwb avatar Aug 17 '22 08:08 zhengwb

Hi guys! this problem bothered me for a long time. Many people raised this issue, like #118 and #65.

If you use Anaconda, after browsering many many solutions, here is my approach.

First, run "conda install -c conda-forge jupyter_contrib_nbextensions" in Anaconda prompt; After finishing the first step, run "jupyter contrib nbextension install --user" in Anaconda prompt; After finishing the second step, run "jupyter nbextensions_configurator enable --user" in Anaconda prompt;

Retart Jupyter notebook, you should see everything.

It works for me too! Thanks ! x)

GuillaumeLemele avatar Dec 16 '22 16:12 GuillaumeLemele

Hi guys! this problem bothered me for a long time. Many people raised this issue, like #118 and #65.

If you use Anaconda, after browsering many many solutions, here is my approach.

First, run "conda install -c conda-forge jupyter_contrib_nbextensions" in Anaconda prompt; After finishing the first step, run "jupyter contrib nbextension install --user" in Anaconda prompt; After finishing the second step, run "jupyter nbextensions_configurator enable --user" in Anaconda prompt;

Retart Jupyter notebook, you should see everything.

Thanks for the solution! It works for me.

However, you may get the following warning message after jupyter contrib nbextension install --user:

nbextension 'highlight_selected_word/main' has duplicate listings in both '$HOME/.local/share/jupyter/nbextensions/highlight_selected_word/configurator.yaml' and '$HOME/.local/share/jupyter/nbextensions/highlight_selected_word/configurator.yaml'

To fix this, you can run

jupyter contrib nbextensions uninstall --sys-prefix

to remove the duplicated version.

(Refer to https://github.com/Jupyter-contrib/jupyter_nbextensions_configurator/issues/25#issuecomment-287730514)

ChenglongMa avatar Feb 04 '23 06:02 ChenglongMa