Remote access
Running an Ipython notebook kernel from remote server, access from local browser, probably for multiple users.
The simple way for single user link
at-home:~$ ssh -X -L 8889:localhost:8888 my.server
... login message from my.server
my.server:$ cd /folder/containing/my/notebooks
my.server:$ ipython notebook --no-browser
[NotebookApp] .... lots of info about the IPython notebook server including
[NotebookApp] The IPython notebook is running at 'http://127.0.0.1:8888/'
Then you can access the notebook from http://localhost:8889/ at local browser. It should support python plot separately instead of %matplotlib inline, but does not work for me. ref
The more robust way is link separating notebook kernel process from browser access connection.
本文介绍了一种通过SSH隧道远程访问IPython Notebook的方法,并区分了内核进程与浏览器访问连接的不同方式。对于单用户场景,提供了简单的链接设置步骤。而对于更健壮的多用户方案,虽然文中未详细说明,但指出了分离内核与访问连接的重要性。
1698

被折叠的 条评论
为什么被折叠?



