赞
踩
## 1. 安装nodejs和npm, 如果已经存在,则忽略
echo y | sudo apt install nodejs npm
## 2. 需要验证一下在安装了npm之后是否还需要安装libffi-dev
## 需要安装libffi-dev, 否则报错:fatal error: ffi.h: No such file or directory
echo y | sudo apt install libffi-dev
## 3. pip 安装jupyter
pip3 install jupyterlab
## 4. 配置远程登录, 使用非root用户, 我这里一时疏忽,用了root账号,所以在最后启动时需要加上--allow-root
jupyter lab --generate-config
## 5. 配置jupyter server 的密码
jupyter server password # 接着输入密码
# 6. 然后会在/home/'user'/.jupyter/ 目录下生成jupyter_server_config.json文件, 我配置使用的是root用户,所以会再/root/目录下
# 7. 配置jupyter 的IP地址
cd /root/.jupyter
echo "c.ServerApp.ip = '0.0.0.0'" >> jupyter_lab_config.py
echo "c.ServerApp.port = 8888" >> jupyter_lab_config.py
echo "c.ServerApp.allow_origin = '*'" >> jupyter_lab_config.py
echo "c.ServerApp.allow_remote_access = True" >> jupyter_lab_config.py
echo "c.ExtensionApp.open_browser = False" >> jupyter_lab_config.py
echo "c.ServerApp.token = ''" >> jupyter_lab_config.py
echo "c.ServerApp.password = u'jupyter_server_config.json中的password'"
# 这里的password是jupyter_server_config.json中的password,这个配置非必须,因为上面已经使用jupyter server password设置了登录密码,个人建议就不用设置了。
# 另外也可以在启动时使用命令 jupyter lab -- ip=192.168.31.225 来设置server的地址
## 8. 启动 jupyterlab
mkidr -p /home/dl
cd /home/dl
nohup jupyter lab --allow-root >> /var/log/jupyter.log 2>&1 & # 后台运行
jupyter --version >> /var/log/jupyter.log # 查看log
## 9. 最后输入密码登录
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。