如何设置远程运行 jupyter 的服务器

问题描述 投票:0回答:0

我能够如下设置服务器,以便从连接到 LAN 的计算机运行 jupyter。

ssh user_name@host_ip_address (login to server)  
jupyter notebook --no-browser --port=8080 (in the server connected to the LAN)

ssh -L 8080:localhost:8080 username@host_ip_address (port catching in the local pc)

http://localhost:8080/ (accessing jupyter notebook in the local browser)

如何设置服务器以远程运行 jupyter(在 LAN 之外)?

python-3.x networking server jupyter-lab remote-server
© www.soinside.com 2019 - 2024. All rights reserved.