本文介绍在 Ubuntu20.04 系统部署jupyter-lab。
本期实验为您介绍了如何在操作系统为Ubuntu20.04的云服务器实例上正确安装并部署jupyter-lab。在实验正式开始前,请先完成如下准备工作:
预计部署时间:40分钟
级别:初级
相关产品:云服务器
受众:通用
sudo apt-get install libffi-dev sudo apt install python3-pip pip3 install -i https://pypi.tuna.tsinghua.edu.cn/simple jupyter pip3 install -i https://pypi.tuna.tsinghua.edu.cn/simple jupyterlab sudo apt install jupyter-core //安装启动jupyterlab所需插件 sudo apt install nodejs npm curl -fsSL https://deb.nodesource.com/setup_18.x | sudo -E bash - &&\ sudo apt-get install -y nodejs
jupyter notebook --generate-config //生成配置文件 //生成jupyterlab的登录密码 ipython from notebook.auth import passwd passwd() exit()
vim ~/.jupyter/jupyter_notebook_config.py 在文件末尾添加: c.NotebookApp.ip = '0.0.0.0' c.NotebookApp.open_browser = False c.NotebookApp.password = 'argon2:*************' //上一步设置密码生成的信息 c.NotebookApp.port = 8888 //设置jupyter-lab访问端口 jupyter labextension install @jupyter-widgets/jupyterlab-manager jupyter lab --allow-root //启动
如果您有其他问题,欢迎您联系火山引擎技术支持服务。