作者:En199010221 | 来源:互联网 | 2024-10-11 16:20
生成配置文件:jupyter notebook --generate-config
我的配置文件:/home/dxg/.jupyter/jupyter_notebook_config.py
后台运行jupyter notebook 命令:nohup jupyter notebook &
查看运行的jupyter进程:ps -aux | grep jupyter
a:显示所有程序
u:以用户为主的格式来显示
x:显示所有程序,不以终端机来区分
配置文件常修改内容如下
c.NotebookApp.token = ''
c.NotebookApp.open_browser = False
c.NotebookApp.port = 8888
c.NotebookApp.notebook_dir = '/opt/module/anaconda-test'
c.NotebookApp.ip = '*'