一、Jupyter环境的搭建
一般只需要下面两条命令,就可以重新打开就可看见新安装的插件环境。
pip install jupyter_contrib_nbextensions
或者
jupyter contrib nbextension install
但是pip下载完,会出现jupyter_contrib_nbextension扩展功能后不显示Nbextensions标签的bug,在此记录下解决的方式。
三、扩展插件不显示的解决方法
- 如果之前已经用上述两条命令之一安装了上述包,且用pip list查看的确成功安装,则依次进行下面删除命令(选y):
pip uninstall jupyter_contrib_nbextensions
pip uninstall jupyter_nbextensions_configurator
- 打开Anaconda Prompt窗口,执行第一个命令,用于安装nbextensions:
pip install jupyter_contrib_nbextensions
- 再执行第下面命令,用于安装 javascript and css files:
jupyter contrib nbextension install --user
- 最后执行,用于安装configurator:
pip install jupyter_nbextensions_configurator