4

When I installed matplotlib in my 64-bit windows it require numpy. Then i installed numpy and again matplotlib then it says that

    numpy: 1.7.1
freetype2: found, but unknown version (no pkg-config)
           * WARNING: Could not find 'freetype2' headers in any
           * of 'win32_static\include', '.',
           * 'win32_static\include\freetype2', '.\freetype2'.

and I tried in python

import numpy

there is no error

but when i tried

import matplotlib

shows error

Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
ImportError: No module named matplotlib

What may be the solution ?

4

2 回答 2

3

softpedia 不是 mpl 二进制文件的“官方”主机,请参阅http://matplotlib.org/downloads.html


matplotlib这里下载并安装它。它包含了所有依赖项。

于 2013-04-21T04:48:06.037 回答
2

如果要从源代码安装 Matplotlib,则需要以下工具:

构建依赖项

  • Python(支持 2.x)
  • 麻木(> 1.1)
  • libpng (> 1.1)
  • 自由类型 (> 1.4)

Matplotlib 的 Windows 安装程序应该已经包含 libpng 和 FreeType。但是,显然您的 matplotlib 找不到 FreeType 安装。

您可以在您的 PC 中搜索 FreeType 安装并提供 matplotlib 的路径,以便它可以找到所需的文件。如果未安装 FreeType,您应该这样做,尽管它应该包含在 Windows 安装程序中。

于 2013-04-19T11:11:27.320 回答