您的位置:首页 > 编程语言 > Python开发

Install iPython Notebook on Ubuntu Lucid 10.04

2013-01-04 01:16 429 查看
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):

1ipython 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

内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: