Windows远程访问服务器的jupyter notebook

Posted sbj123456789

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Windows远程访问服务器的jupyter notebook相关的知识,希望对你有一定的参考价值。

首先服务器和客户端都要安装好 jupyter notebook

1. 先在服务器执行:

jupyter-notebook --no-browser --port=1111  (端口号只要避免冲突就行)

记录连接出现的token

2. 再在客户端输入:(确保安装过ssh)

ssh -N -f -L localhost:1112:localhost:1111 username@serverIP (其中username为用户名,serverIP为服务器的IP地址)

3. 在客户端浏览器输入:http://localhost:1112

将刚才记录的token输入其中,登录,即可看到服务器的文件了。

参考:https://blog.csdn.net/qq_32612467/article/details/78728883

以上是关于Windows远程访问服务器的jupyter notebook的主要内容,如果未能解决你的问题,请参考以下文章

Windows10远程访问Ubuntu服务器上的Jupyter Notebook解决办法

实用教程Windows远程服务器安装anaconda,开放端口并在本地访问Jupyter notebook

利用本地浏览器远程服务器上的jupyter notebook(报错/usr/bin/python3: No module named ipykernel_launcher)

远程登录jupyter notebook

本地主机访问远程linux系统服务器上的jupyter notebook

windows远程访问ubuntu下的jupyter notebook必要配置