What is the use of Jupyter Notebook cluster

末鹿安然 提交于 2019-12-19 04:14:24

问题


Can you tell me what is the use of jupyter cluster. I created jupyter cluster,and established its connection.But still I'm confused,how to use this cluster effectively?

Thank you


回答1:


With Jupyter Notebook cluster, you can run notebook on the local machine and connect to the notebook on the cluster by setting the appropriate port number. Example code:

  1. Go to Server using ssh username@ip_address to server.
  2. Set up the port number for running notebook. On remote terminal run jupyter notebook --no-browser --port=7800
  3. On your local terminal run ssh -N -f -L localhost:8001:localhost:7800 username@ip_address of server.
  4. Open web browser on local machine and go to http://localhost:8001/


来源:https://stackoverflow.com/questions/51869574/what-is-the-use-of-jupyter-notebook-cluster

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!