jupyter插件nbextensions安装及遇到的问题

  1. 打开Anaconda终端
    jupyter插件nbextensions安装及遇到的问题_第1张图片
  2. 安装nbextensions:
  • pip install jupyter_contrib_nbextensions
  • jupyter contrib nbextension install --user

第一条命令遇到问题:

  Building wheel for jupyter-nbextensions-configurator (setup.py) ... error
  ERROR: Command errored out with exit status 1:

解决方法:重新运行pip install 即可

第二条命令遇到问题:

Jupyter command `jupyter-contrib` not found.

原因:系统环境变量没有找到此路径
解决方法:cmd进入jupyter_contrib_nbextensions所在文件夹,执行命令python application.py install手动安装

  1. 安装nbextensions_configurator:
  • pip install jupyter_nbextensions_configurator
  • jupyter nbextensions_configurator enable --user
  1. 再打开jupyter notebook就能看到Nbextensions了!
    jupyter插件nbextensions安装及遇到的问题_第2张图片

补充:

在教研室新电脑上安装插件时,发现nbextensions和nbextensions_configurator的安装都特别丝滑,但尝试各种方法以及重启Jupyter Notebook和电脑,界面都没有插件…之后看一篇博客说是因为版本过高导致的!难怪刚打开的时候说Jupyter Notebook新版本咋咋…新电脑上安的是6.5.4,重装了和笔记本一样的版,6.4.8就好了!!!

参考:
[1] CSDN上一个nbextensions安装的方法
[2] pip install 时报错:ERROR: Command errored out with exit status 1:
[3] Jupyter command jupyter-contrib not found
[4] cmd到指定文件夹的方法cd

你可能感兴趣的:(Python,jupyter,python,ide)