Linux上配置Jupyter Notebook

①生成配置文件

jupyter notebook --generate-config

②生成秘钥
使用python3进入python开发环境

from notebook.auth import passwd  
passwd()

会生成sha1密文
③修改配置文件
vim ~/.jupyter/jupyter_notebook_config.py

c.NotebookApp.ip='*'                     # 就是设置所有ip皆可访问  
c.NotebookApp.password = u'sha:ce...     # 刚才复制的那个密文'  
c.NotebookApp.open_browser = False       # 禁止自动打开浏览器  
c.NotebookApp.port =6789                 # 我的8888已经被占用了,所以换成6789  
c.NotebookApp.notebook_dir = '/home/hadoop/PyWorkspace/dataanalyze'

④启动jupyter notebook服务器

nohup jupyter notebook&

你可能感兴趣的:(python)