Install iPython Notebook on Ubuntu Lucid 10.04

Install iPython Notebook on Ubuntu Lucid 10.04 « Trung Huynh's tech blog

Install iPython Notebook on Ubuntu Lucid 10.04

1
2
3
4
5
6
7
sudo add-apt-repository ppa:chris-lea/zeromq
sudo add-apt-repository ppa:chris-lea/libpgm
sudo add-apt-repository ppa:chris-lea/python-tornado
sudo apt-get update
sudo apt-get install libzmq1 libzmq-dev libpgm-5.1-0 python-tornado
sudo pip install pyzmq==2.1.4
sudo pip install ipython=0.13.1

Run ipython notebook with pylab and figures inline at port 8888 (as default by the way):

1
ipython notebook --port 8888 --pylab inline

Of course you need to have numpy, scipy, matplotlib in order to run notebook with pylab.

Some nice extensions that you might want to have a look: extensions

原文地址:https://www.cnblogs.com/lexus/p/2843562.html