安装的是Anaconda3(Python 3.6.4),自带的版本较低,这里升级版本
conda update jupyterlab
一、配置jupyter lab(notebook)远程访问
1.1 生成一个 notebook 配置文件
默认情况下,配置文件 ~/.jupyter/jupyter_notebook_config.py 并不存在,需要自行创建。使用下列命令生成配置文件:
jupyter notebook --generate-config
1.2 生成密码
从 jupyter notebook 5.0 版本开始,提供了一个命令来设置密码:jupyter notebook password
,生成的密码存储在 jupyter_notebook_config.json
。
1.3 修改配置文件
在 jupyter_notebook_config.py
中找到下面的行,取消注释并修改。
c.NotebookApp.ip = '*'
c.NotebookApp.open_browser = False
c.NotebookApp.port = 8888 #可自行指定一个端口, 访问时使用该端口
二、后台运行
和其普通程序一样,后台运行,并重定向log
nohup jupyter lab 2>&1 > ~/logs/jupyter.log &
三、添加目录
jupyter labextension install jupyterlab-toc
当然,大概率会出现这个错误,按提示安装nodejs就行了
conda install nodejs
注:
在之前可以添加conda源,提高速度
conda config --add channels https://mirrors.ustc.edu.cn/anaconda/pkgs/free/
conda config --add channels https://mirrors.ustc.edu.cn/anaconda/pkgs/main/
conda config --set show_channel_urls yes