美文网首页
Running Jupyter on server

Running Jupyter on server

作者: yingshaoxo | 来源:发表于2018-03-15 18:42 被阅读14次

1. install

sudo -H pip install jupyter 

2. create config

jupyter notebook --generate-config

3. set password

jupyter notebook password

4. set ip

vim ~/.jupyter/jupyter_notebook_config.json
{
  "NotebookApp": {
    "ip": "0.0.0.0",
  }
}

5. run it

jupyter notebook

相关文章

网友评论

      本文标题:Running Jupyter on server

      本文链接:https://www.haomeiwen.com/subject/aqzhqftx.html