pip install matplotlib
(virtualenv 内で)実行すると、出力の最初の行は次のようになります。
Downloading/unpacking matplotlib
Running setup.py egg_info for package matplotlib
basedirlist is: ['/usr/local/', '/usr', '/usr/X11', '/opt/local']
============================================================================
BUILDING MATPLOTLIB
matplotlib: 1.2.0
python: 2.7.3 (default, Dec 14 2012, 13:31:05) [GCC 4.2.1
(Apple Inc. build 5666) (dot 3)]
platform: darwin
REQUIRED DEPENDENCIES
numpy: 1.6.2
freetype2: found, but unknown version (no pkg-config)
OPTIONAL BACKEND DEPENDENCIES
libpng: found, but unknown version (no pkg-config)
Tkinter: Tkinter: 81008, Tk: 8.5, Tcl: 8.5
Gtk+: no
* Building for Gtk+ requires pygtk; you must be able
* to "import gtk" in your build/install environment
Mac OS X native: yes
Qt: no
Qt4: no
PySide: no
Cairo: no
<snip>
ノート
- 「no pkg-config」、および
- 不足している Qt ライブラリ。
まず、上記の出力に反して、実際にpkg-config
はインストールされており、次の場所にありPATH
ます。
% pkg-config --version
0.27.1
% which pkg-config
/usr/local/bin/pkg-config
2 つ目は、とが見つかっqt
たのと同じディレクトリにあります。freetype
libpng
% ls -l /usr/local/opt/{freetype,libpng,qt} | cut -c43-
/usr/local/opt/freetype -> ../Cellar/freetype/2.4.10/
/usr/local/opt/libpng -> ../Cellar/libpng/1.5.13/
/usr/local/opt/qt -> ../Cellar/qt/4.8.4/
私の質問には 3 つの部分があります。
- それはどこで
pip install matplotlib
得られますかbasedirlist
(上記の出力の 3 行目)。pip install matplotlib
見つけられるように、私は何をしなければなりませんpkg-config
か?pip install matplotlib
見つけられるように、私は何をしなければなりませんqt
か?