Jupyter Notebook安装 nbextensions 插件
生活随笔
收集整理的這篇文章主要介紹了
Jupyter Notebook安装 nbextensions 插件
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
安裝 nbextensions 插件
一、打開Anaconda Prompt窗口,執行第一個命令,用于安裝nbextensions:
pip install jupyter_contrib_nbextensions二、再執行第二個命令,用于安裝 javascript and css files
jupyter contrib nbextension install --user三、最后執行,用于安裝configurator
pip install jupyter_nbextensions_configurator四、如果出錯的話,先執行卸載命令,再執行上面命令,再試一次:
pip uninstall jupyter_contrib_nbextensions pip uninstall jupyter_nbextensions_configurator若是pip連接超時,采用清華鏡像安裝
pip install -i https://pypi.tuna.tsinghua.edu.cn/simple jupyter_contrib_nbextensions # 超時可以加--default-timeout=10000然后重新啟動Jupyter Notebook后,就會發現已經有Nbextensions標簽了。
常用插件
代碼提示(Hinterland)
代碼字號調整(code font size)
代碼美化(code prettify)
并排顯示(Split Cells NoteBook)
Collapsible headings 折疊標題
Notify 通知機制,跑一些耗時較久的任務,完成后通知
Codefolding 折疊代碼
Zen mode 隱藏活動狀態欄,方便注意代碼
Execute time 顯示運行的時間
總結
以上是生活随笔為你收集整理的Jupyter Notebook安装 nbextensions 插件的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 上位机软件控制下位机PHP,采用stm3
- 下一篇: Flink的时间语义和Watermark