Numpy 安装Matplotlib

Matplotlib是一个非常有用的绘图库,下一篇攻略就将用到它。Matplotlib依赖于NumPy的存在,但十有八九你已安装了NumPy

具体步骤

本节将介绍怎样在Windows、Linux和Mac环境中安装Matplotlib,以及怎样从源文件安装。

可以使用Enthought发行版进行安装,详见http://www.enthought.com/products/epd.php

可能需要把msvcp71.dll文件放到C:\Windows\system32目录下。可以访问http://www.dll-files.com/dllindex/dll-files.shtml?msvcp71下载这个dll文件。

  • 在Linux环境中安装Matplotlib

让我们看看怎样在各种Linux发行版本中安装Matplotlib。

  • Debian和Ubuntu版本的安装命令如下:
sudo apt-get install python-matplotlib 
  • Fedora/Redhat版本的安装命令如下:
su - yum install python-matplotlib 
  • 从源文件安装

从Sourceforge(http://sourceforge.net/projects/matplotlib/files/)下载最新的tar.gz格式的源文件,或者使用如下命令直接从Git版本仓库下载。

git clone git://github.com/matplotlib/matplotlib.git

下载完毕后,像往常一样使用如下命令构建和安装Matplotlib:

cd matplotlib
python setup.py install

  • 在Mac环境中安装Matplotlib

从http://sourceforge.net/projects/matplotlib/files/matplotlib/获取最新的DMG文件并进行安装。

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程