About custom front-end extensions for notebook version 7.0 #6881
Replies: 1 comment 5 replies
-
The extension mechanism in v7 is different than in v6. There is some documentation about this in https://jupyter-notebook.readthedocs.io/en/latest/migrating/frontend-extensions.html. If you have some critical extensions that are not yet available in v7 you can temporarily use
Note that this specific feature is already available in Notebook 7 and can be enabled via the settings system: filename-searcher-enable.mp4It would be nice to add this to the documentation, maybe in this page: https://jupyter-notebook.readthedocs.io/en/latest/ui_components.html |
Beta Was this translation helpful? Give feedback.
-
I am not sure if notebook v7 still supports the 'nbextensions' extension mechanism. I encountered several issues when using it in v7. After installing the package 'nbextension' using 'pip install jupyter_contrib_nbextensions', I tried to verify it with the command 'jupyter nbextension list', but it returned the error message "Jupyter command jupyter-nbextension not found." Then, I attempted to reinstall the package using "pip install --upgrade --force-reinstall jupyter_contrib_nbextensions". Following that, I ran two additional commands: "jupyter contrib nbextension install --user" and "jupyter nbextensions_configurator enable --user". However, after completing these steps, I noticed that my notebook version was downgraded to v6, which is incorrect. I would like to ask for assistance in resolving this issue because my requirement is to customize front-end extensions, such as adding a file search box on the tree page.
Beta Was this translation helpful? Give feedback.
All reactions