一、生成密码
jupyter notebook password
二、生成默认配置文件
jupyter notebook --generate-config
三、修改配置文件
vim ~/.jupyter/jupyter_notebook_config.py
## 修改配置内容
c.ServerApp.ip = '*'
c.ServerApp.port = 8888
## 修改成将之前生成的密文
c.ServerApp.password=''
c.ExtensionApp.open_browser = False
c.JupyterNotebookApp.open_browser = False
四、启动
jupyter notebook --no-browser --port=8888