jupyter notebook插件nbextensions安装过程中遇到的问题

一、正常安装和配置

安装&配置nbextensions在这里插入代码片

在我们配置nbextensions之前,jupyter notebook的界面是这样的:

我们在命令行输入以下命令,即可安装并配置nbextensions

1.1 安装nbextensions

	pip install jupyter_contrib_nbextensions
	jupyter contrib nbextension install --user

1.2 安装nbextensions_configurator

	pip install jupyter_nbextensions_configurator
	jupyter nbextensions_configurator enable --user

安装配置完成后,我们重新启动jupyter notebook,界面变成了:
在这里插入图片描述

二、安装报错

显示Jupyter command jupyter-contrib not found

2.1 先卸载:

在Anaconda Powershell Prompt中执行

pip uninstall jupyter_contrib_nbextensions
pip uninstall jupyter_nbextensions_configurator

2.2 重新下载并安装:

pip install -i http://pypi.douban.com/simple --trusted-host pypi.douban.com jupyter_contrib_nbextensions

2.3 找到jupyter_contrib_nbextensions所在目录

可以运行卸载命令,会弹出安装目录(如下截图,但不要输入Y)
在这里插入图片描述

2.4 cd进入jupyter_contrib_nbextensions所在目录,在该路径中执行

cd d:programdataanaconda3scripts
jupyter contrib-nbextension install --user

2.5 不再报错,重启jupyter notebook