Windows 7 でグラフ ツールを使用したいのですが、インストールに問題があります。
ここにリストされているすべての要件が正常にインストールされています。には Python 2.7 がインストールされていC:\python27
ます。Boost 1.49.0 は mingw で正常にコンパイルされ、にインストールされC:\boost
、BOOST_ROOT
環境変数がそれを指しています。Boost は、デバッグ モードとリリース モード、および静的と動的の両方でコンパイルされます。
configure
MSyS 内から呼び出すと、次のエラーが発生します。
configure: error:
Could not link test program to Python. Maybe the main Python library has been
installed in some non-standard library path. If so, pass it to configure,
via the LDFLAGS environment variable.
Example: ./configure LDFLAGS="-L/usr/non-standard-path/python/lib"
============================================================================
ERROR!
You probably have to install the development version of the Python package
for your distribution. The exact name of this package varies among them.
============================================================================
呼び出しconfigure LDFLAGS="-LC:/python27/libs"
によりこのエラーは修正されましたが、次のエラーが発生しました
checking for boostlib >= 1.38.0... configure: error: We could not detect the boo
st libraries (version 1.38 or higher). If you have a staged boost library (still
not installed) please specify $BOOST_ROOT in your environment and do not give a
PATH to --with-boost option. If you are sure you have boost installed, then ch
eck your version number looking in <boost/version.hpp>. See http://randspringer.
de/boost for more documentation.
BOOST_ROOT
明確に定義されているため、これは奇妙です(printenv
コマンドで確認しました)。
次に試したコマンドはconfigure --with-boost="C:/boost" LDFLAGS="-LC:/python27/libs"
checking for boostlib >= 1.38.0... yes
checking whether the Boost::Python library is available... no
configure: error: No usable boost::python found
ブーストは検出されますが、boost::python が見つかりません。サイズが大きいため、stackoverflow に投稿することはできませんが、ここでconfig.log
見つけることができます。
私は今本当に混乱しており、助けていただければ幸いです。