赞
踩
Jupyter lab是一个交互式笔记本,支持运行40多种编程语言。它本质上是一个web应用程序,可以很方便的创建和共享程序文档,支持实时代码,数学方程,可视化和markdown。
pip install jupyterlab
pip install jupyterlab-language-pack-zh-CN
jupyter lab --generate-config # 看到生成路径
- # 1)打开并进入
- cd ~/.jupyter # 一般都在这里
- vim jupyter_notebook_config.py
-
- # 2)找到 # c.ServerApp.notebook_dir = ''
-
- # 3)修改 #例如这里意思是:D盘/jupyter_test文件夹
- # c.ServerApp.notebook_dir = '/mnt/d/jupyter_test'
-
- # 4)保存
- :wq!
ln -s /mnt/d/jupyter_test ./jupyter_test
- # jupyter lab --port 端口号 --ip IP地址(0.0.0.0支持非本地)
- # jupyter lab --port 8888 --ip=127.0.0.1
-
- # 不调用浏览器
- jupyter lab --no-browser
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。