欢迎来到 AI 中文社区(简称 AI 中文社),这里是学习交流 AI 人工智能技术的中文社区。 为了更好的体验,本站推荐使用 Chrome 浏览器。
全部教程·
Python语言·
Jupyter
[目录]
·
JupyterLab 安装和入门
Jupyter 教程
IPython 安装
IPython 启动
IPython 运行脚本
IPython 历史命令
IPython 系统命令
IPython 命令行选项
IPython 动态对象自省
IPython IO缓存
IPython 环境变量
IPython shell代码
IPython 嵌入
IPython 魔术命令
Jupyter 项目
Jupyter 笔记本
Jupyter 在线使用
Jupyter 安装与入门
Jupyter 仪表盘
Jupyter 用户界面
Jupyter 单元格类型
Jupyter 编辑
Jupyter Markdown
Jupyter 魔术功能
Jupyter 绘图
Jupyter 转换
Jupyter IPyWidgets
Jupyter QtConsole入门
QtConsole 多行编辑
QtConsole 嵌入式图形
QtConsole 保存为HTML
QtConsole 多个控制台
Jupyter 笔记本连接
Jupyter 笔记本共享
JupyterLab 概述
JupyterLab 安装和入门
JupyterLab 界面
JupyterLab 安装R内核
Jupyter 教程
IPython 安装
IPython 启动
IPython 运行脚本
IPython 历史命令
IPython 系统命令
IPython 命令行选项
IPython 动态对象自省
IPython IO缓存
IPython 环境变量
IPython shell代码
IPython 嵌入
IPython 魔术命令
Jupyter 项目
Jupyter 笔记本
Jupyter 在线使用
Jupyter 安装与入门
Jupyter 仪表盘
Jupyter 用户界面
Jupyter 单元格类型
Jupyter 编辑
Jupyter Markdown
Jupyter 魔术功能
Jupyter 绘图
Jupyter 转换
Jupyter IPyWidgets
Jupyter QtConsole入门
QtConsole 多行编辑
QtConsole 嵌入式图形
QtConsole 保存为HTML
QtConsole 多个控制台
Jupyter 笔记本连接
Jupyter 笔记本共享
JupyterLab 概述
JupyterLab 安装和入门
JupyterLab 界面
JupyterLab 安装R内核
JupyterLab 安装和入门
在安装之前,您可以在线尝试JupyterLab的功能。访问 https://jupyter.org/try 并选择"尝试JupyterLab"选项。

启动器选项卡显示当前可用的内核和控制台。您可以基于其中的任何一个来启动新的基于笔记本/终端的笔记本。左列还具有用于文件浏览器的选项卡,正在运行的内核以及选项卡和设置视图。
JupyterLab通常随Anaconda发行版自动安装。但是,也可以使用以下conda命令单独安装它-
# Filename : example.py # Copyright : 2020 By aizws # Author by : www.aizws.net # Date : 2020-08-28 conda install -c conda-forge jupyterlab
您也可以为此目的使用pip命令:
# Filename : example.py # Copyright : 2020 By aizws # Author by : www.aizws.net # Date : 2020-08-28 pip3 install jupyterlab
要启动JupyterLab应用程序,最方便的方法是从Anaconda Navigator(如果已安装)。

或者使用此命令从Windows/Linux命令终端或Anaconda提示符从命令行启动它。
# Filename : example.py # Copyright : 2020 By aizws # Author by : www.aizws.net # Date : 2020-08-28 jupyter lab
无论哪种方式,JupyterLab应用程序的启动屏幕都是这样的-

下一章:JupyterLab 界面
要启动新笔记本,请单击所需的内核。在上面的屏幕截图中,可以看到一个内核是Python3内核。单击它以启动Python笔记本。观察其功能与我们在本教程中研究的功能相似。 菜单栏菜单栏位于窗口顶部。您可以在 ...
AI 中文社