从base中新建虚拟python解释器环境:

conda create --name Jupyter python=3.11 numpy  matplotlib pandas
conda activate Jupyter
conda deactivate

配置Jupyter使用conda-forge源以保证版本最新。

conda install -c conda-forge jupyterlab
codna install nb_conda openpyxl

或者使用Docker,可以保证稳定可用。

Installation — JupyterLab 4.3.0a0 documentation


Starting JupyterLab

vscode + Jupyter:

指定notebook工作目录:

jupyter lab --notebook-dir=D:/ --preferred-dir D:\\Project\\Jupyter

浏览器打开后,log out推出页面服务在无活动一段时间后终止(prompt依然占用),shutdown立马终止服务。

--port 8888默认端口8888,多个Jupyter则每个递增1

--no-browser 不启动浏览器,复制终端提供的带token的URL浏览器访问即可。

--generate-config Writing default config to: C:\Users\H1253\.jupyter\jupyter_lab_config.py 并替换当前路径配置文件为默认配置文件

Jupyter 保存文件格式为*.ipynb ,其会一并以cell为单位保存最后一次运行结果。

常用库

numpy np

Jupyter扩展