""" 第一步 安装 """
pip3 install -i https://pypi.douban.com/simple  jupyter


""" 第二步 生成配置文件 """
jupyter notebook --generate-config --allow-root
# 配置文件生成在:~/.jupyter/jupyter_notebook_config.py


""" 第三步 生成密码 """
jupyter notebook password


""" 第四部 修改配置文件 """
# 设置监听地址,一般改为当前主机的ip
sed -ie "s/#c.NotebookApp.ip = 'localhost'/c.NotebookApp.ip = '0.0.0.0'/g" ~/.jupyter/jupyter_notebook_config.py
# 设置监听端口
sed -ie 's/#c.NotebookApp.port = 8888/c.NotebookApp.port = 8000/g' ~/.jupyter/jupyter_notebook_config.py
# 禁用自动打开浏览器
sed -ie 's/#c.NotebookApp.open_browser = True/c.NotebookApp.open_browser = False/g' ~/.jupyter/jupyter_notebook_config.py


""" 第五步 启动朱皮特 """
jupyter notebook --allow-root &


""" 第六步 访问 """
# 在访问前,先看看你的防火墙规则
# 此时打开浏览器,输入 Jupyter服务器的ip:8000
# 进入登陆页面后,输入刚刚生成的密码即可

相关文章:

  • 2021-04-18
  • 2022-12-23
  • 2021-07-23
  • 2021-04-09
  • 2021-12-28
  • 2022-01-05
  • 2022-12-23
  • 2022-02-08
猜你喜欢
  • 2021-10-06
  • 2021-12-03
  • 2022-12-23
  • 2022-01-23
  • 2022-01-06
  • 2022-12-23
  • 2021-11-14
相关资源
相似解决方案