安装:
conda install jupyter notebook
配置:
1、设置登录密码
python
from notebook.auth import passwd
passwd()
2、修改配置文件
生成配置文件:jupyter notebook --generate-config
修改:vim /root/.jupyter/jupyter_notebook_config.py
修改内容
c.NotebookApp.password =
c.NotebookApp.port =
c.NotebookApp.ip = *
3、启动
jupyter notebook --allow-root
网友评论