web-dev-qa-db-ja.com

Matplotlibビルドの問題:エラーC1083:インクルードファイルを開けません: 'ft2build.h'

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であることを言及する必要があります

26
user92355

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

14

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

Sudo apt-get install python-dev libfreetype6-dev
60
Damien Farrell

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

brew install freetype
7
JoshNahum

同じ問題がMac OS 10.6(スノーヒョウ)とPython 2.7。)にある可能性がある人にとって、私が見つけた最も簡単な解決策は、Numpy、scipy、およびmatplotlibをダウンロードするmakeファイルを取得することでしたmakeファイルをカスタマイズして、matplotlibのみを取得できます。ソリューションの link を次に示します。

3
sa9

Red Hat 6でも同じエラーが発生しました。freetypeではなくfreetype-develをインストールする必要があることがわかりました(Sudo yum install freetype-develを使用)

3
SaiyanGirl

Mac OS Xでhomebrewを使用してfreetypeをインストールすることにより、この問題も修正しました。ただし、Mac OS X 10.7ではライブラリが適切にリンクされなかったため、これでは不十分でした。そのため、次のように手動でpipコマンドに追加する必要がありました。

brew install freetype
brew install libpng
LDFLAGS="-L/usr/local/opt/freetype/lib -L/usr/local/opt/libpng/lib" CPPFLAGS="-I/usr/local/opt/freetype/include -I/usr/local/opt/libpng/include -I/usr/local/opt/freetype/include/freetype2" pip install matplotlib 

フォルダ/usr/local/opt/freetype/include/freetype2も追加する必要があることに注意してください。これは、デフォルトではホームブリュー通知に含まれていませんが、ft2build.hが見つからないという結果になります。

2
user1496984

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を開きます。

2
Milean

Cドライブのフォルダーにファイルをダウンロードします。 WindowsのCMDプロンプトで、管理者としてcd..またはcd wheelsを使用してパスをナビゲートします(私の場合、ファイルをc:\Wheelsに保存しました)。次にpip install YourFilename.whlと入力します。

結果

Processing c:\wheels\scipy-0.19.0-cp27-cp27m-win_AMD64.whl
Requirement already satisfied: numpy>=1.8.2 in c:\python27\lib\site-packages (from scipy==0.19.0)
Installing collected packages: scipy
Successfully installed scipy-0.19.0
0
Steve Lynch