-
安装jupyter lab
conda install jupyterlab
-
配置jupyter lab
-
生成登录密码
alan@root:~$ ipython In [1]: from notebook.auth import passwd In [2]: passwd() Enter password: Verify password: Out[2]: 'sha1:759cd475addc:37fc06c05b6e2454a7b897af52842068c47642a7'
-
生成对应的配置文件
alan@root:~$ jupyter lab --generate-config Writing default config to: /home/alan/.jupyter/jupyter_notebook_config.py
-
更改配置文件jupyter_notebook_config.py
c.NotebookApp.allow_root = True c.NotebookApp.ip = '0.0.0.0' c.NotebookApp.open_browser = False c.NotebookApp.password = u'sha1:56070cacc47e:e93ed513e0535efcfe63a5130f1a9f91810a93b2'
-
-
运行jupyter lab
# nohup表示ssh终端断开后仍然运行 # &表示允许后台运行 alan@root:~$ nohup jupyter lab &
运行成功之后在该网络上的随意一台电脑上输入 ip:8888 便可以访问到 jupyterlab 上。
-
更改python环境
-
安装插件
conda install nb_conda
-
相关文章
- 10-03机器学习中jupyter lab的安装方法以及使用的命令
- 10-03Jupyter-lab环境配置调试服务器代码
- 10-03windows anaconda 安装jupyter lab
- 10-03Jetson Nano安装 Jupyter lab
- 10-03ubuntu如何安装samba服务器?
- 10-03男神鹏: Jupyter Lab 的 功能与安装
- 10-03服务器端安装jupyter notebook,本地浏览器访问时遇见的问题
- 10-03本地使用服务器jupyter lab
- 10-03【转】ubuntu下安装及设置FTP服务器!!
- 10-03Ubuntu Server 12.04 安装 Jabberd2 服务器