Jupyter lab的Anaconda安装方法

1. 安装jupyter notebook

首先在anaconda环境中安装jupyter notebook

conda install jupyter notebook

具体设置工作请参考Linux上配置Jupyter Notebook远程访问
注意:还需在jupyter_notebook_config.py下面添加如下两句

c.NotebookApp.allow_remote_access = True
c.NotebookApp.allow_root = True

2. 安装jupyter lab

然后在anaconda中执行命令

conda install jupyterlab
conda update jupyter_core jupyter_client

3.运行

jupyter lab

最后在浏览器中输入相应ip和端口port即可打开。

你可能感兴趣的:(安装教程)