Ipython now provides RPM(python-ipython-notebook) from Fedora 18.
http://ipython.org/install.html
Fedora 15 is too old… not providing RPM, but we can also install very easy.
1. Install zeromq: (Im using i686 boxes, no yum servers now provided for the old release, you can google for the RPMs)
1 2 |
zeromq-2.1.9-1.fc15.i686.rpm zeromq-devel-2.1.9-1.fc15.i686.rpm |
2. using easy_install:
1 2 3 |
easy_install ipython easy_install pyzmq easy_install pyzmq tornado |
3. Run the service in your own directory:
1 |
[suse@suse ~/workspace/ipython-notebook]$ipython notebook |
1 2 3 4 5 6 7 |
...Created profile dir: u'/home/suse/.ipython/profile_default' ...Using MathJax from CDN: http://cdn.mathjax.org/mathjax/latest/MathJax.js ...Serving notebooks from local directory: /home/suse/workspace/ipython-notebook ...0 active kernels ...The IPython Notebook is running at: http://127.0.0.1:8888/ ...Use Control-C to stop this server and shut down all kernels (twice to skip confirmation). ...INFO:tornado.access:302 GET / (127.0.0.1) 1.20ms |
I wonder if you can open a window for it?
I tried your commands and it worked but I don’t even know how to exit it…
1. yes once the service running it shall call firefox or other browser to open the link.
If it doesnt comeup automatically, you can open a browser manually, and access url “http://127.0.0.1:8888/” (or other port you specified.)
2. To shutdown the kernel/service, you can just use ‘Ctrl – C’ key combine.
-suse