JupyterLab基础镜像

简介

JupyterLab is the next-generation web-based user interface for Project Jupyter.

用来取代Jupyter Notebook的一个基于Web的用户交互式用户界面。相当于增强版的Jupyter Notebook。

相较于Jupyter Notebook,在JupyterLab里除了建立传统的Jupyter笔记(Jupyter Notebook),还文本编辑器、终端(terminal)、方便易用的文件浏览器。

作为文本编辑器,除了编辑文本文件外,还可预览excel文件、csv文件、图片文件、json文件等。

JupyterLab非常适合数据分析、教程编写等任务。

安装

  • pip 环境下:
    pip install jupyterlab
    使用国内源安装: pip install jupyterlab -i https:\\pypi.douban.com\simple
  • conda环境下:
    conda install -c conda-forge jupyterlab

 

官网:https://jupyterlab.readthedocs.io/en/stable/

JupyterLab基础镜像
JupyterLab基础镜像
代码森林官方