2

boost.pythonこのリンクに従ってビルドしようとしています。./b2またはを使用してコンパイルしようとすると./bjam、次のようなエラーが発生します。

error: No best alternative for /python_for_extensions 
next alternative: required properties: <python>2.6 <target-os>linux 
    matched 
next alternative: required properties: <python>2.6 <target-os>linux 
    matched

次の行を追加すると、エラーは消えます。

using python : 2.6 : /usr/bin/python2.6 : /usr/include/python2.6 : /usr/lib/python2.6 : <python-debugging>on ;

/home/kchaitanya/boost/boost_1_50_0/tools/build/v2/user-config.jam

ただし、今コンパイルすると、ヘッダー ファイルが見つからないというコンパイル時エラーが発生します。エラーのほんの一部の抜粋は次のとおりです。

 ...patience...
 ...patience...
 ...found 1548 targets...
 ...updating 62 targets...
 gcc.compile.c++ bin.v2/libs/python/build/gcc-4.1.2/release/link-static/threading multi/numeric.o

 In file included from ./boost/python/detail/prefix.hpp:13,
             from ./boost/python/numeric.hpp:8,
             from libs/python/src/numeric.cpp:6:
 ./boost/python/detail/wrap_python.hpp:50:23: error: pyconfig.h: No such file or directory
 ./boost/python/detail/wrap_python.hpp:75:24: error: patchlevel.h: No such file or directory
 ./boost/python/detail/wrap_python.hpp:78:2: error: #error Python 2.2 or higher is required for 
 ./boost/python/detail/wrap_python.hpp:142:21: error: Python.h: No such file or directory
 ./boost/python/instance_holder.hpp:34: error: ‘PyObject’ has not been declared
 ./boost/python/instance_holder.hpp:41: error: expected ‘;’ before ‘(’ token
 ./boost/python/instance_holder.hpp:45: error: ‘PyObject’ has not been declared
 ./boost/python/detail/wrapper_base.hpp:21: error: expected initializer before ‘*’ token
 ./boost/python/detail/wrapper_base.hpp:23: error: expected initializer before ‘*’ token

この boost.python のビルドに関するヘルプが必要です。

4

2 に答える 2

3

問題は、Pythonバージョンに対応するpython-develまたはパッケージをインストールすることではありませんでした。python-dev

私の場合はpython2.6だったので

sudo yum install python26-develトリックをしました。

于 2013-03-01T06:44:42.347 に答える