0

Win 7 x64 (Python 2.7 x64) に matplotlib をインストールする必要があります。MS VS 10 がインストールされています (MS C++ コンパイラを使用)。

実行時

pip install matplotlib

私はpip.logでこれを取得します:

...

cxxextensions.c

  c:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\BIN\amd64\link.exe /DLL /nologo /INCREMENTAL:NO /LIBPATH:C:\Python27\libs /LIBPATH:C:\Python27\PCbuild\amd64 freetype.lib z.lib /EXPORT:initft2font build\temp.win-amd64-2.7\Release\src/ft2font.obj build\temp.win-amd64-2.7\Release\src/mplutils.obj build\temp.win-amd64-2.7\Release\CXX\cxxsupport.obj build\temp.win-amd64-2.7\Release\CXX\cxx_extensions.obj build\temp.win-amd64-2.7\Release\CXX\IndirectPythonInterface.obj build\temp.win-amd64-2.7\Release\CXX\cxxextensions.obj /OUT:build\lib.win-amd64-2.7\matplotlib\ft2font.pyd /IMPLIB:build\temp.win-amd64-2.7\Release\src\ft2font.lib /MANIFESTFILE:build\temp.win-amd64-2.7\Release\src\ft2font.pyd.manifest

LINK : fatal error LNK1181: cannot open input file 'z.lib'

error: command '"c:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\BIN\amd64\link.exe"' failed with exit status 1181

wTH は z.lib ですか? 圧縮用のzlibじゃないですよね?

4

1 に答える 1

0

はい、z.libzlibライブラリです。ただし、matplotlibはWindows用のバイナリインストーラーを提供しているため、。を使用してソースからインストールする必要はありませんpip

于 2013-02-07T20:51:29.223 に答える