1、base环境下安装
conda activate base
2、查询jupyterlab的版本
conda search jupyterlab
3、安装jupyterlab
conda insatll jupyterlab
4、安装完成
5、生成配置文件
jupyter lab --generate-config
6、创建密码
jupyter lab password
7、打开文件.json,复制password后面的话
gedit /home/luowei/.jupyter/jupyter_server_config.json
"argon2:$argon2id$v=19$m=10240,t=10,p=8$GPfCa9zkhIOuUBkLZC3m0w$ZgnUKiLndMhCkbqVVe1gf4Iiem2edHqE3EJqNWc0Fn4"
8、访问jupyter
可以通过修改配置文件:IP地址,密文,浏览器,端口
gedit /home/luowei/.jupyter/jupyter_lab_config.py
加入以下内容
c.ServerApp.allow_remote_access = True # 允许远程访问
c.ServerApp.allow_root = True # 允许root运行
c.ServerApp.notebook_dir = '/DATA/User/luowei/jupyterlab' # 设置工作目录,默认为用户家目录
c.ServerApp.ip = '*' # 监听地址
c.ServerApp.port = 8701 # 运行端口,默认8888
c.ServerApp.password = 'argon2:$argon2id$v=19$m=10240,t=10,p=8$GPfCa9zkhIOuUBkLZC3m0w$ZgnUKiLndMhCkbqVVe1gf4Iiem2edHqE3EJqNWc0Fn4' # 密码
c.ServerApp.open_browser = False # 不打开浏览器
9、运行jupyter lab
jupyter lab
关闭服务ctrl + C即可
(后台运行版本)
nohup python -m jupyterlab --allow-root > ~/.jupyter/jupyter.log 2>&1 &
nobup命令让jupyter在后台运行,输出日志到~/.jupyter/jupyter.log文件中,并且输出进程号
结束进程,关闭服务:
kill -9 191745
也可以通过服务端口号查询进程,并杀死
lsof -i:8701