|
|
将其安装好之后,接下来启动IPython来验证一下是不是万事俱备了:引入pandas,然后绘制一个简单的matplotlib图形。- C:\Users\Wes>ipython --pylab
- Python 2.7.3 |EPD_free 7.3-1 (32-bit)|
- Type "copyright", "credits" or "license" for more information.
- IPython 0.12.1 -- An enhanced Interactive Python.
- ? -> Introduction and overview of IPython's features.
- %quickref -> Quick reference.
- help -> Python's own help system.
- object? -> Details about 'object', use 'object??' for extra details.
- Welcome to pylab, a matplotlib-based Python environment [backend: WXAgg]. For more
- information, type 'help(pylab)'.
- In [1]: import pandas
- In [2]: plot(arange(10))
复制代码 |
|