码迷,mamicode.com
首页 > 编程语言 > 详细

IPython在Windows 7上的搭建步骤

时间:2015-06-05 17:24:17      阅读:227      评论:0      收藏:0      [点我收藏+]

标签:

安装篇

  1. 安装Python,现在是python2.7.10。按照自己的平台下载对应的版本安装即可。
  2. 安装IPythonIPython的官网很容易找到。安装完毕后,会在你的python目录下出现一个Scripts的目录,ipython的一些主要文件都在里面。
  3. 安装pyreadline (only for windows)
  4. 安装pyzmqnotebook是基于web的,而套接字信息传递使用的是zeromq。安装文件可能是egg格式的,需要用到easy_install。
  5. 安装Tornado因为notebook是基于web的,因此需要一个web server,官方用的是Tornado。
  6. 安装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‘
  • 晒个运行截图

技术分享

 

IPython在Windows 7上的搭建步骤

标签:

原文地址:http://www.cnblogs.com/juncaofish/p/4554894.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!