Jupyter Notebook安装jupyter_contrib_nbextension时部分错误修正

错误提示如下

Jupyter Notebook安装jupyter_contrib_nbextension时部分错误修正_第1张图片

安装jupyter_contrib_nbextension方法

官方安装文档链接为:https://github.com/ipython-contrib/jupyter_contrib_nbextensions/blob/master/README.md

所有指令都在windows命令行中执行

根据官方安装文档提示,安装nbextension有两个步骤:

  1. 安装python包,指令为:
pip install jupyter_contrib_nbextensions
  1. 安装Javascript和CSS文件,指令为:
jupyter contrib nbextension install --user
一般来说,就是在执行这个指令时出现文章开头那个错误

解决方法

  1. 删除原先安装的 jupyter_contrib_nbextension 包,指令为:
pip uninstall jupyter_contrib_nbextensions
pip uninstall jupyter_nbextensions_configurator  #如果也有安装这个包
  1. 根据官方文档提示,可以使用以下两条指令替代
conda install -c conda-forge jupyter_contrib_nbextensions
jupyter contrib nbextension install --sys-prefix
  1. 安装 jupyter_nbextensions_configurator 包,指令为:
conda install -c conda-forge jupyter_nbextensions_configurator
  1. 重启 Jupyter Notebook即可

success

你可能感兴趣的:(插件包安装错误解决方法)