pip安装jupyter_contrib_nbextension扩展功能和安装后不显示Nbextensions标签的解决办法
程序员文章站
2022-03-03 13:16:54
...
1.遇到的问题:
在使用jupyter notebook一步一步执行代码时,虽然可以有效理解代码,但是当代码很长时就会占用较大的窗口,不利于阅读。所以就利用jupyter notebook的Nbextensions插件来折叠代码。
按照官网的执行命令:
1.pip install jupyter_contrib_nbextensions
2.pip install jupyter_nbextensions_configurator
3.jupyter contrib nbextension install --user
4.pip install jupyter_nbextensions_configurator
然而重启jupyter notebook时却不显示Nbextensions标签
2.解决办法——使用conda安装
可能pip安装的时候我的网速较差,有个别的功能包安装失败
也有可能conda和pip安装方式的不同(详情可以看下conda与pip的区别)
2.1 先卸载 jupyter_contrib_nbextensions和 jupyter_nbextensions_configurato
pip uninstall jupyter_contrib_nbextensions
pip uninstall jupyter_nbextensions_configurator
2.2安装jupyter_contrib_nbextentions
1.conda install -c conda-forge jupyter_contrib_nbextensions
2.3安装jupyter_nbextentions_contributor,以便在Jupyter Notebook页面设置nbextentions
2.conda install -c conda-forge jupyter_nbextensions_configurator
参考文献:
1.https://blog.csdn.net/qq_40678222/article/details/112726598
2.https://www.jianshu.com/p/3022b93bf5cd