在下载好jupyter lab 后,需要对其进行设置,尤其是远程服务器的时候,因为根本就是没有屏幕,也没有浏览器。文章来源:https://www.toymoban.com/news/detail-648640.html
新建设置文件
jupyter lab --generate-config
设置文件内部参数
vim ~/.jupyter/jupyter_lab_config.py
进去一通改,也能直接复制粘贴起来文章来源地址https://www.toymoban.com/news/detail-648640.html
c.ServerApp.root_dir = '/home/workspace'
c.ServerApp.allow_remote_access = True
c.ServerApp.ip = '*'
c.LabApp.open_browser = False
c.ServerApp.port = 8701
启动
jupyter lab --allow-root
到了这里,关于Python jupyter lab 设置的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!