Centos7 搭建jupyter远程服务器

Posted 蓝天飞翔的白云

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Centos7 搭建jupyter远程服务器相关的知识,希望对你有一定的参考价值。

前提:已经安装好jupyter 和Ipython,个人安装anaconda自带jupyter和Ipython

步骤1:生成配置文件:

jupyter notebook --generate-config

生成完可以看到配置文件的存储位置

步骤2:生成密码

运行Ipython

In [1]: from notebook.auth import passwd 
In [2]: passwd() 
Enter password: 
Verify password: 
Out[2]:sha1:ce23d945972*********63968a41f1140274’

步骤3:修改配置文件jupyter_notebook_config.py

c.NotebookApp.ip=* # 就是设置所有ip皆可访问
c.NotebookApp.password = usha:ce...刚才复制的那个密文
c.NotebookApp.open_browser = False # 禁止自动打开浏览器
c.NotebookApp.port =8888 #随便指定一个端口

步骤4:启动jupyter

nohup jupyter notebook  &  #nohup是用来防止退出shell关闭jupyter运行,&进行后台运行

 

以上是关于Centos7 搭建jupyter远程服务器的主要内容,如果未能解决你的问题,请参考以下文章

搭建一个jupyter服务器让你在线写Python

Centos7 搭建Jupyter NoteBook教程

搭建远程 Jupyter Notebook

centos7+上搭建cobblerweb远程快速装机

搭建远程 Jupyter Notebook

搭建Python3的jupyter notebook服务器