在 jypyter 中添加菜单和自动完成功能

在 jypyter 中添加菜单和自动完成功能

参考文档
http://www.360doc.com/content/17/1103/14/1489589_700569828.shtml
http://top.jobbole.com/35789/
https://jupyter-notebook.readthedocs.io/en/stable/config_overview.html
https://jupyter-contrib-nbextensions.readthedocs.io/en/latest/install.html#enabling-disabling-extensions
https://www.lefer.cn/posts/15473/
http://www.cnblogs.com/cloud-ken/p/7401534.html
https://blog.csdn.net/huangkangying/article/details/80769743

终告失败

  conda install -c conda-forge jupyter_contrib_nbextensions # 安装扩展
  jupyter nbextension enable codefolding/main # 启用扩展
  jupyter notebook # 重启 jupyter
  • 打开扩展设置 http://localhost:8888/nbextensions/
  • 勾选 Table of Contents 及其选项 Display toc window/sidebar at startup 启动时显示 toc 菜单
  • 勾选 Hinterland 自动完成
  • 勾选 code prettify 代码美化
  • 勾选 rubberband 多选 col
  • 勾选 tree filter 文件搜索

猜你喜欢

转载自www.cnblogs.com/daysme/p/9464459.html