34

ft2build.hは次の場所にあります。

C:\Program Files\GnuWin32\include

最初に、私はここと同じ間違いをしました:

致命的なエラー C1083: インクルード ファイルを開けません: 'tiffio.h': そのようなファイルまたはディレクトリはありません VC++ 2008

しかし、それ以来、その特定のエラーを修正しました (上記のディレクトリを「実行可能ファイル」リストではなく「インクルード」リストに追加しました) が、それでもエラーが発生します。完全な出力は次のとおりです。

BUILDING MATPLOTLIB
            matplotlib: 0.98.5.2
                python: 2.6.2 Stackless 3.1b3 060516 (release26-maint, Apr
                        14 2009, 21:19:36) [MSC v.1500 32 bit (Intel)]
              platform: win32
       Windows version: (5, 1, 2600, 2, 'Service Pack 3')

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

OPTIONAL BACKEND DEPENDENCIES
                libpng: found, but unknown version (no pkg-config)
                        * Could not find 'libpng' headers in any of '.'
               Tkinter: no
                        * No tk/win32 support for this python version yet
              wxPython: 2.8.9.2
                        * WxAgg extension not required for wxPython >= 2.8
                  Gtk+: no
                        * Building for Gtk+ requires pygtk; you must be able
                        * to "import gtk" in your build/install environment
       Mac OS X native: no
                    Qt: no
                   Qt4: no
                 Cairo: no

OPTIONAL DATE/TIMEZONE DEPENDENCIES
              datetime: present, version unknown
              dateutil: matplotlib will provide
                  pytz: matplotlib will provide

OPTIONAL USETEX DEPENDENCIES
                dvipng: no
           ghostscript: no
                 latex: no
               pdftops: no

[Edit setup.cfg to suppress the above messages]
============================================================================
pymods ['pylab']
packages ['matplotlib', 'matplotlib.backends', 'matplotlib.projections', 'mpl_to
olkits', 'matplotlib.numerix', 'matplotlib.numerix.mlab', 'matplotlib.numerix.ma
', 'matplotlib.numerix.npyma', 'matplotlib.numerix.linear_algebra', 'matplotlib.
numerix.random_array', 'matplotlib.numerix.fft', 'matplotlib.delaunay', 'pytz',
'dateutil', 'dateutil/zoneinfo']
running build
running build_py
copying lib\matplotlib\mpl-data\matplotlibrc -> build\lib.win32-2.6\matplotlib\m
pl-data
copying lib\matplotlib\mpl-data\matplotlib.conf -> build\lib.win32-2.6\matplotli
b\mpl-data
running build_ext
building 'matplotlib.ft2font' extension
C:\Program Files\Microsoft Visual Studio 9.0\VC\BIN\cl.exe /c /nologo /Ox /MD /W
3 /GS- /DNDEBUG -IC:\Python26\lib\site-packages\numpy\core\include -I. -IC:\Pyth
on26\lib\site-packages\numpy\core\include\freetype2 -I.\freetype2 -IC:\Python26\
include -IC:\Python26\include\Stackless -IC:\Python26\PC /Tpsrc/ft2font.cpp /Fob
uild\temp.win32-2.6\Release\src/ft2font.obj
ft2font.cpp
C:\Program Files\Microsoft Visual Studio 9.0\VC\INCLUDE\xlocale(342) : warning C
4530: C++ exception handler used, but unwind semantics are not enabled. Specify
/EHsc
c:\python26\lib\site-packages\matplotlib-0.98.5.2\src\ft2font.h(13) : fatal erro
r C1083: Cannot open include file: 'ft2build.h': No such file or directory
error: command '"C:\Program Files\Microsoft Visual Studio 9.0\VC\BIN\cl.exe"' fa
iled with exit status 2

これはPython 2.6であることに言及する必要があります

4

11 に答える 11

69

このエラーは、Ubuntu 10.10 で matplotlib をビルドするときにも発生します。解決策は次のとおりです。

sudo apt-get install python-dev libfreetype6-dev
于 2011-03-05T19:02:47.553 に答える
14

freetype は正しくインストールされていますか?ある場合はft2build.h、インストール ディレクトリの下のどこかに名前の付いたファイルがあるはずです。そのファイルが見つかったディレクトリを で指定する必要があります-I。文字列「GnuWin32」は、ビルド コマンドの出力のどこにも表示されないため、そのディレクトリを正しいインクルード リストに配置していないようです。

于 2009-04-18T05:27:41.803 に答える
8

Mac OS X の別の解決策は、Homebrew で Freetype をインストールすることです。

brew install freetype
于 2012-11-02T02:13:29.213 に答える
4

次のようにして、Windowsでこれを解決できました。

   set INCLUDE=%INCLUDE%;C:\tmp\msvcr90-x32
   set LIB=%LIB%;C:\tmp\msvcr90-x32
   pip.exe install matplotlib

Windows 上の Freetype のリンク ライブラリは次の場所にあります: http://www.lfd.uci.edu/~gohlke/pythonlibs/#matplotlib (meawoppl のコメントから)

「matplotlib‑1.x‑windows‑link‑libraries.zip」をダウンロードし、zip から README を開きます。

于 2014-07-02T14:48:43.637 に答える
3

Red Hat 6 でも同じエラーが発生しましたfreetype-develfreetypesudo yum install freetype-devel

于 2012-09-07T22:42:44.920 に答える
3

Mac OS 10.6 (snow leopard) と Python 2.7 で同じ問題が発生する可能性があるユーザー向け。、私が見つけた最も簡単な解決策は、Numpy、scipy、matplotlib をダウンロードしてコンパイルする make ファイルを取得することでした。make ファイルをカスタマイズして、matplotlib のみを取得できます。ここに解決策へのリンクがあります。

于 2011-01-22T12:55:35.400 に答える