jupyter lab 打开方式

Jupyter Lab 是 Jupyter Notebook 的下一代升级版,界面相对更友好,功能也更强大,更像一个IDE了。

可以到这个页面 https://jupyter.org/try 试用一下。

0. 安装jupyterlab

1
pip install jupyterlab

1. jupyterlab的三种打开方式(windows)

1.1 命令行打开

在工作目录,打开命令行工具,输入:

1
jupyter lab

浏览器(会自动)打开jupyterlab页面:http://localhost:8888/lab

  • 注意,jupyter lab 会默认继承 jupyter notebook 的相关配置,如果之前有改过的话。

1.2 用bat文件打开

在工作目录,新建jupyter_lab.bat文件,文件内容填入:

1
jupyter lab

下次双击打开jupyter_lab.bat文件即可。


ps: 如果想用无窗口模式(去掉黑乎乎的终端窗口)打开,可以新建一个vbs,丢到工作目录里。

1
CreateObject("WScript.Shell").Run "C:\\xxxx\\python\\3.7.4\\Scripts\\jupyter-lab.exe",0

1.3 右键菜单打开

在右键菜单里添加 jupyter lab here按钮,方法如下:

  • 新建注册表文件jupyter lab here.reg,内容:

    1
    2
    3
    4
    5
    6
    7
    Windows Registry Editor Version 5.00

    [HKEY_CURRENT_USER\Software\Classes\Directory\Background\shell\Jupyter Lab Here]
    "Icon"="\"C:\\Users\\XXXX\\scoop\\apps\\python\\current\\Lib\\site-packages\\notebook\\static\\favicon.ico\""

    [HKEY_CURRENT_USER\Software\Classes\Directory\Background\shell\Jupyter Lab Here\command]
    @="\"C:\\Users\\XXXX\\scoop\\apps\\python\\current\\Scripts\\jupyter-lab.exe\""
    • favicon.ico,jupyter-lab.exe的路径按实际情况修改
  • 双击jupyter lab here.reg文件,注入注册表即可!