最近有一个培训机构找笔者来做一份Python的培训教材,顺带着研究了下python notebook,发现很好很强大,现把初步的安装步骤记录如下:
1.安装Python
这个是必须的,在http://www.python.org/download/ 下载最新的Python版本。按照自己的平台下载对应的版本,然后安装即可。
2. 安装IPython
直接使用:pip install ipython 下载安装最新的ipython组件
3.安装pyzmq
直接使用easy_install pyzmq安装,pip install安装的方式不支持
4.安装jinja2
直接使用easy_install jinja2安装,pip install安装的方式不支持
5.安装tornado
由于notebook是使用web服务器来编辑,所以需要安装tornado,直接使用pip install tornado来安装
6.运行notebook
运行ipython notebook启动本地的notebook服务,显示如下界面,安装成功。
7.打开本地的notebook文件
ipython notebook xxx.py/xxx.ipynb(绝对路径)
更多安装连接如下:
http://www.360doc.com/content/14/0902/11/16740871_406476389.shtml
http://www.windowsazure.cn/zh-cn/develop/python/tutorials/ipython-notebook/
时间: 2024-10-16 03:36:44