首先服务器和客户端都要安装好 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