Jupyter nbextensions 插件安装错误

  1. There are multiple ways to install contributed extensions. For this example, we will use pip.
pip install jupyter_contrib_nbextensions
  1. Next, add the notebook extension style files to the Jupyter configuration files.
jupyter contrib nbextension install --sys-prefix
  1. Then, you will enable the extensions you would like to use. The syntax for this is jupyter nbextension enable followed by the path to the desired extension’s main file. For example, to enable scratchpad, you would type the following:
jupyter nbextensionenablescratchpad/main --sys-prefix
  1. When this is completed, the enabled extension should be visible in the extension list:
jupyter nbextension list

你可能感兴趣的:(Jupyter nbextensions 插件安装错误)