一)临时修改启动设置
jupyter notebook --ip=0.0.0.0 --no-browser --allow-root --notebook-dir=/home/python/jupyter-notebook
--ip:指定为0.0.0.0表示可以远程访问,如果我需要在本地访问服务器上的jupyter就需要指定ip,否则本地访问不了。
--allow-root:root用户启动jupyter需要指定这个参数
--notebook-dir:指定启动jupyter的目录
二)永久生效
打开cmd(linux打开命令行),执行
jupyter notebook --generate-config
将在当前路径下生成一个文件: jupyter_notebook_config.py
(linux会在/root/.jupyter/下面你生成一个.py文件)
C:\Users\sheng> jupyter notebook --generate-config Writing default config to: C:\Users\sheng\.jupyter\jupyter_notebook_config.py
根据需要进行修改,如修改启动目录:
## The directory to use for notebooks and kernels. #c.NotebookApp.notebook_dir = ''
其他可以修改远程访问地址,端口,登录密码等。