StrugglingProgrammer
StrugglingProgrammer

Reputation: 758

What is an easy way to work on an IPython Notebook hosted remotely?

I am ssh'd into a remote server would like to manipulate data on that machine without having to constantly push and pull the data around via my repository.

Can I run an IPython Notebook on that server and access/interact with it on my local browser? If so, how do I go about setting this up?

Upvotes: 0

Views: 66

Answers (1)

gg349
gg349

Reputation: 22681

This will get you up and running if your server and your machine are on a LAN, and the server has one open port (there, 9999).

This will make it work even if you only have ssh access to the remote server. It works with as an ssh tunnel with port forwarding.

Upvotes: 1

Related Questions