[IPython-User] how to setup python notebook to run on a local network
gmail
massimodisasha@gmail....
Sun Oct 30 12:49:44 CDT 2011
Hi All,
really thanks for the python notebook, i found it really powerful!
i'm able to run it on my laptop using the standard 'localhost' IP address,
running python using :
ipython notebook --pylab=inline
now i'd like to access the notebook from an other computer that use the same local network,
to do it i'm running python as follow :
ipython notebook --pylab=inline --ip='192.168.1.130'
(where 192.168.1.130 is the local IP for the computer where python is running)
in this way i'm able to open the notebook .. but running any command it doesn't print any results
like :
In [1]:
a = 5
In [2]:
a
nothing is printed.
instead running on localhost 127.0.0.1 i have :
In [1]:
a = 5
In [2]:
a
Out[2]:
5
on localhost it works as aspected.
can you help me to learn how to properly setup python notebook to run on my local network, in order to acres it from other computer on the same network ?
i guess there are some settings i have to tune …
thanks for any help!
--Massimo.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://mail.scipy.org/pipermail/ipython-user/attachments/20111030/8f874721/attachment-0001.html
More information about the IPython-User
mailing list