安装篇
- 安装Python,现在是python2.7.10。按照自己的平台下载对应的版本安装即可。
- 安装IPython,IPython的官网很容易找到。安装完毕后,会在你的python目录下出现一个Scripts的目录,ipython的一些主要文件都在里面。
- 安装pyreadline (only for windows)。
- 安装pyzmq,notebook是基于web的,而套接字信息传递使用的是zeromq。安装文件可能是egg格式的,需要用到easy_install。
- 安装Tornado,因为notebook是基于web的,因此需要一个web server,官方用的是Tornado。
- 安装MathJax,为了能够方便地显示数学符号、公式,需要MathJax的支持。安装很简单,打开一个IPython的shell,然后键入如下代码:
from IPython.external.mathjax import install_mathjax install_mathjax()
使用篇
- 启动本地notebook,打开Windows命令行,键入:ipython notebook
- 配置notebook,打开Windows命令行,键入:ipython profile create,会生成.ipython\profile_default\ipython_config.py等配置文件
- 例如,想要内联matplotlib的图片,可以在ipython_kernel_config.py中加入
# Configuration file for ipython-kernel. c = get_config() c.IPKernelApp.matplotlib = ‘inline‘
- c.IPKernelApp.matplotlib = ‘inline‘
时间: 2024-12-30 00:57:36