当前位置:   article > 正文

Linux服务器上使用Jupyter_jupyter linux 作业提交

jupyter linux 作业提交

安装与配置

1、安装 jupyter

pip install jupyter
  • 1

2、生成密码

jupyter-notebook password
  • 1

这将会在 ‘~/.jupyter/jupyter_notebook_config.json’ 文件中生成一个哈希键
在这里插入图片描述

vi .jupyter/jupyter_notebook_config.json
  • 1

3、生成配置文件

jupyter lab --generate-config
  • 1

4、修改配置文件
vi ~/.jupyter/jupyter_notebook_config.py

c.NotebookApp.ip = '*'
# Fill in the hash key
c.NotebookApp.password = u'sha1:1e39d24dcd6c:b265321ca0c4cb798888bcb69b0024983a8ac439'
c.NotebookApp.open_browser = False
c.NotebookApp.port = 6666
c.NotebookApp.allow_remote_access = True
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6

5、 打开jupyter server

jupyter lab
  • 1

6、 打开浏览器访问jupyter lab

http://server-ip-address:6666
  • 1

7、如果访问失败了,配置SHH隧道

8、最终登录上jupyter lab

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/我家自动化/article/detail/245149
推荐阅读
相关标签
  

闽ICP备14008679号