Jupyter Lab 是 Jupyter Notebook 的下一代升级版,界面相对更友好,功能也更强大,更像一个IDE了。
可以到这个页面https://jupyter.org/try试用一下。
0. 安装jupyterlab
pip install jupyterlab
1. jupyterlab的三种打开方式(windows)
1.1 命令行打开
在工作目录,打开命令行工具,输入:
jupyter lab
浏览器(会自动)打开jupyterlab页面:http://localhost:8888/lab
- 注意,jupyter lab 会默认继承 jupyter notebook 的相关配置,如果之前有改过的话。
1.2 用bat文件打开
在工作目录,新建jupyter_lab.bat
文件,文件内容填入:
jupyter lab
下次双击打开jupyter_lab.bat
文件即可。
1.3 右键菜单打开
在右键菜单里添加 jupyter lab here
按钮,方法如下:
- 新建注册表文件
jupyter lab here.reg
,内容:
Windows Registry Editor Version 5.00
[HKEY_CLASSES_ROOT\directory\background\shell\Jupyter Lab Here]
"icon"="C:\\Users\\xxxx\\python\\3.6.8\\Lib\\site-packages\\notebook\\static\\favicon.ico"
[HKEY_CLASSES_ROOT\directory\background\shell\Jupyter Lab Here\command]
@="C:\\Users\\xxxx\\python\\3.6.8\\Scripts\\jupyter-lab.exe"
favicon.ico
,jupyter-lab.exe
的路径按实际情况修改
- 双击
jupyter lab here.reg
文件,注入注册表即可!
网友评论