跳到主要内容

1 篇博文 含有标签「jupyter」

查看所有标签

· 阅读需 1 分钟
大盗天放

If you want to use jupyter on remote server, this blog might be useful.

Step1: Run jupyter without browser on remote server:

jupyter notebook --no-browser --port=8888

Step2: Bind local port to remote server:

ssh -N -f -L localhost:8888:ip:8888 user@ip

Step3: Open browser on you local machine and direct to localhost:8888

To Stop Local Process:

ps aux|grep jupyter

kill pid