【发布时间】:2018-08-16 04:22:51
【问题描述】:
你能告诉我jupyter集群有什么用吗?我创建了jupyter集群,并建立了它的连接。但是我仍然很困惑,如何有效地使用这个集群?
谢谢
【问题讨论】:
标签: python python-3.x jupyter-notebook cluster-computing jupyter
你能告诉我jupyter集群有什么用吗?我创建了jupyter集群,并建立了它的连接。但是我仍然很困惑,如何有效地使用这个集群?
谢谢
【问题讨论】:
标签: python python-3.x jupyter-notebook cluster-computing jupyter
使用 Jupyter Notebook 集群,您可以在本地机器上运行 notebook,并通过设置适当的端口号连接到集群上的 notebook。示例代码:
ssh username@ip_address 访问服务器。jupyter notebook --no-browser --port=7800
run ssh -N -f -L localhost:8001:localhost:7800 username@ip_address 上。 http://localhost:8001/
【讨论】: