如果我的 cygwin 环境中有 matplotlib 那就太好了。我有 64 位 Windows 8 和 64 位 cygwin。
当我输入:
pip install matplotlib
我收到以下错误消息:
* The following required packages can not be built:
* freetype
按照 apt-cyg 我已经安装了以下软件包:
Searching for installed packages matching freetype:
cygwin32-freetype2
freetype2-debuginfo
libfreetype-devel
libfreetype-doc
libfreetype6
还需要什么?如何正确安装 freetype 和 matplotlib?
答案1
我在 Windows 7 64 位上遇到了同样的问题;我通过安装 Cygwin 软件包pkg-config
并libX11-devel
在输入之前解决了这个问题easy_install matplotlib==1.1.1
(1.3.1 版本在我的计算机上出现错误,因此使用 1.1.1)。
答案2
我在 cygwin Windows 8 64 位上也遇到了同样的问题。我按照另一个回复中的建议(安装pkg-config
和libX11-devel
)操作,但最终允许我安装 matplotlib 的软件包是libfreetype-devel
。然后就easy_install matplotlib==1.4.2
。