玩转Python大数据分析 《Pytho

发布时间:2019-09-15 09:54:05编辑:auto阅读(1772)

    作者推荐使用EPD作为学习本书各章节的学习环境,但登录到EPD网站后发现EPD已经升级为canocy了,当然可以使用canocy,

    但是有个授权期限问题,实际上EPD不过是Scipy、Numpy等工具包的一个合集,学习这本书无非需要使用Numpy、Scipy、Pandas,

    这些都可以自己根据阶段需求自己来安装即可,我在读这本书的时候就自己安装上述各工具包,现总结一下如何在Ubuntu12.04下如

    何安装学习此书的开发环境。

    1 安装GCC

    sudo aptitude install gcc

    2 安装NumPy

    安装说明网页

    http://www.scipy.org/install.html安装命令(numpy、scipy、ipython、malplotlib等)

    sudo apt-get install python-numpy python-scipy python-matplotlib ipython ipython-notebook python-sympy python-nose

    3M带宽安装需要30分钟吧

    3 安装pandas

    安装说明网页

    http://pandas.pydata.org/pandas-docs/stable/install.html安装命令

    sudo apt-get install python-pandas

    4测试

    1)ipython notebook --pylab inline (启动网页版的IPython(notebook))

    2)点击 new notebook

    3) 键入

    1. In [1]:import pandas (shift+Enter)

    2. In [2]:plot(arange(10))(shift+Enter)

    3. Out[2]:

    4. 225927299.jpg


关键字