Jupyter Notebook是一种基于Web的交互式计算环境,它允许用户创建和共享包含实时代码、方程、可视化和叙述性文本的文档。Jupyter Notebook使用Markdown语言编写文档,并支持多种编程语言,包括Python、R、Julia等。
Jupyter Notebook的主要特点包括:
Project Jupyter | Home
Project Jupyter Documentation — Jupyter Documentation 4.1.1 alpha documentation
JupyterLab Documentation — JupyterLab 4.1.0b0 documentation
Jupyter Lab中包含了Jupyter Notebook, 我们只需要安装Jupyter Lab,即可。
Project Jupyter | Installing Jupyter
如何使用conda,可以阅读:
[Python] conda、anaconda、miniconda的关系,miniconda安装,conda命令使用
conda create -y -n jupyterlab_py310 python=3.10
conda activate jupyterlab_py310
pip install jupyterlab
Configuration Overview — Jupyter Notebook 7.1.0a2 documentation (jupyter-notebook.readthedocs.io)
jupyter server --generate-config
默认保存到当前用户目录,我们需要修改“c.ServerApp.root_dir”到你期望保存所有notebooks的新目录,并把“c.ServerApp.open_browser”修改为True,这样子服务器启动后会自动打开浏览器进入Jupyter Lab主界面。
其它的选项保持默认即可。
jupyter-lab
服务启动完之后,会通过默认浏览器自动进入Jupyter Lab主界面: