美文网首页
Linux笔记18-Linux安装JupyterLab

Linux笔记18-Linux安装JupyterLab

作者: 江湾青年 | 来源:发表于2023-04-07 22:20 被阅读0次

    JupyterLab相对于jupyter notebook来说是用过之后就再也不想换回去的存在。Linux安装jupyter lab的过程如下

    1. pip安装
    pip install jupyterlab # 安装jupyter
    pip install jupyterlab-language-pack-zh-CN # 安装汉化包,需要自己选择语言
    
    1. 生成jupyterlab配置文件,路径为~/.jupyter/jupyter_lab_config.py
    jupyter lab --generate-config
    

    3.创建并确认密码,会生成~/.jupyter/jupyter_server_config.json

     jupyter lab password
    
    1. 查看文件内容,如下图,复制password后的一串字符
    less ~/.jupyter/jupyter_server_config.json
    
    复制password后的一串字符
    1. 修改配置文件
    vim  ~/.jupyter/jupyter_lab_config.py
    

    添加以下内容

    c.ServerApp.allow_remote_access = True  # 允许远程访问
    c.ServerApp.allow_root = True           # 允许root运行
    c.ServerApp.notebook_dir = u'工作文件夹'  # 设置工作目录,默认为用户家目录
    c.ServerApp.ip = '*'                    # 监听地址
    c.ServerApp.port = 8888                 # 运行端口,默认8888
    c.ServerApp.password = '刚复制的字符串'    # 密码
    c.ServerApp.open_browser = False        # 不打开浏览器
    
    1. 启动jupyter lab
    nohup python -m jupyterlab --allow-root > ~/.jupyter/jupyter.log 2>&1 &
    

    此处利用nohup命令让jupyterlab在后台执行,并输出日志到~/.jupyter/jupyter.log文件中,该串代码运行后会输出jupyterlab的进程号,通过进程号,可以使用kill -9 进程号来终止项目。

    1. 在浏览器输入IP:端口号即可进行访问。切换中文显示的方法如下:
    切换中文显示

    参考

    https://blog.csdn.net/qq_29183811/article/details/126631328

    相关文章

      网友评论

          本文标题:Linux笔记18-Linux安装JupyterLab

          本文链接:https://www.haomeiwen.com/subject/fjrmddtx.html