pgmagick
XCode4.3.1を使用してOSXLionでビルドしようとしても、あまり成功していません。
次のコマンドを使用して(自作経由で)、ブーストと一緒にImageMagickとGraphicsMagickの両方をインストールしました。
$ brew install graphicsmagick --with-magick-plus-plus
$ brew install imagemagick --with-magick-plus-plus
$ brew install boost --with-thread-unsafe
次に、 https://bitbucket.org/hhatto/pgmagickでリポジトリのクローンを作成しています。
$ hg clone https://bitbucket.org/hhatto/pgmagick/src
$ cd pgmagick
$ python setup.py build
ただし、常に次のエラーが発生します。
ld: library not found for -lboost_python
collect2: ld returned 1 exit status
stdoutの出力に基づいて、セットアップはブースト()の適切な場所を探しています/usr/local/lib
。
私も試しましたが、運がありませんでしたeasy_install
。pip
私はPythonbrewを使用していますが、これも無効にして、ストックpythonインストールを使用してみました-それでも成功しません。
問題を修正する方法、または問題をさらに診断する方法についての提案はありますか?