jupyterlab安装的步骤和注意事项

  1. 安装jupyterlab
conda install -c conda-forge jupyterlab 
  1. 安装nodejs
conda install nodejs
  1. 安装jupyterlab-toc
    这是一个Lab的目录插件,安装后就能很方便地在Lab上展示notebook或者markdown的目录。
    目录可以滚动,并且能展示或隐藏子目录。
jupyter labextension install @jupyterlab/toc

4. 安装LaTeX
支持在线编辑并预览LaTeX文档。

jupyter labextension install @jupyterlab/latex
  1. 安装matplotlib
    该插件可以在Lab中启用matplotlib可视化交互功能。
conda install -c conda-forge ipympl
  1. 安装spreadsheet
    该插件用于在Lab上显示excel表格,只读模式。
jupyter labextension install jupyterlab-spreadsheet

你可能感兴趣的:(jupyterlab安装的步骤和注意事项)