解决启动jupyter报错:加载插件 jupyter_nbextensions_configurator 失败(图文并茂版)
Posted 温柔且上进c
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了解决启动jupyter报错:加载插件 jupyter_nbextensions_configurator 失败(图文并茂版)相关的知识,希望对你有一定的参考价值。
问题描述
- 当我们安装jupyter后,使用
jupyter notebook
命令启动时,可能会出现下述报错:
[W 08:14:31.908 NotebookApp] 加载插件 jupyter_nbextensions_configurator 失败
Traceback (most recent call last):
File "e:\\virtualenv\\one_jupyter-bjsdq89f\\lib\\site-packages\\notebook\\notebookapp.py", line 2027, in init_server_extensions
mod = importlib.import_module(modulename)
File "d:\\python\\lib\\importlib\\__init__.py", line 126, in import_module
return _bootstrap._gcd_import(name[level:], package, level)
File "<frozen importlib._bootstrap>", line 994, in _gcd_import
File "<frozen importlib._bootstrap>", line 971, in _find_and_load
File "<frozen importlib._bootstrap>", line 953, in _find_and_load_unlocked
ModuleNotFoundError: No module named 'jupyter_nbextensions_configurator'
问题分析
- 上述提示说加载jupyter中的
jupyter_contrib_nbextensions
失败!! - 按照提示我们使用命令安装
jupyter_contrib_nbextensions
后依然出现此报错,进而我们分析还出现此问题,可能是因为下面的两个方面:
①:此插件需要与某些别的插件一起使用
②:此插件未配置环境,导致不能正确加载
- 以后出现此类问题,上述的第二个原因是更容易出现的!!!
问题解决
-
查询资料得到此插件需要与另一个插件一起使用并需要配置环境才能使用:
-
首先我们安装
jupyter_contrib_nbextensions
:
pip install jupyter_contrib_nbextensions
- 然后激活
nbextensions
(此步骤是将nbextensions的javascript和css文件复制到jupyter服务器的搜索目录中,并编辑一些jupyter配置文件):
jupyter contrib nbextension install --user
- 安装并启用
Jupyter Nbextensions Configurator
: - 安装:
pip install jupyter_nbextensions_configurator
- 启用:
jupyter nbextensions_configurator enable --user
- 按照上述步骤即可解决此问题!!
以上是关于解决启动jupyter报错:加载插件 jupyter_nbextensions_configurator 失败(图文并茂版)的主要内容,如果未能解决你的问题,请参考以下文章
anaconda重装jupyter notebook后启动jupyter报错的问题
anaconda中jupyter notebook安装代码自动补全插件,报错“Exception: Jupyter command `jupyter-contrib` not found.”(示例代码
Ubuntu上jupyter报错:Exception: Jupyter command `jupyter-kernelspec` not found.解决办法