6

インストール: ostaptan:~ ostap$ brew install imagemagick --disable-openmp --from-source

==> Downloading http://downloads.sf.net/project/machomebrew/mirror/ImageMagick-6.7.7-6.tar.bz2
Already downloaded: /Library/Caches/Homebrew/imagemagick-6.7.7-6.tar.bz2
==> Patching
patching file configure
Hunk #1 succeeded at 32371 (offset 447 lines).
==> ./configure --disable-osx-universal-binary --without-perl --prefix=/usr/local/Cellar/imagemagick/6.7.7-6 --enable-shared --disable-static
==> make install
Error: The linking step did not complete successfully
The formula built, but is not symlinked into /usr/local
You can try again using `brew link imagemagick'
==> Summary
/usr/local/Cellar/imagemagick/6.7.7-6: 1388 files, 32M, built in 61 seconds

インストールでの不適切なリンク後のリンク:

ostaptan:wand ostap$ 醸造リンク imagemagick

Linking /usr/local/Cellar/imagemagick/6.7.7-6...

Error: Could not symlink file: /usr/local/Cellar/imagemagick/6.7.7-6/include/ImageMagick/wand/wand-view.h

Target /usr/local/include/ImageMagick/wand/wand-view.h already exists. You may need to delete it.

To force the link and delete this file, do:
  brew link -f formula_name

To list all files that would be deleted:
  brew link -n formula_name

リンク方法??? 何をすべきか??どこにも答えが見つかりません!

4

3 に答える 3

11

brew link 出力で提案されているように、試してください

brew link -f imagemagick

これにより、 の古いリンクがクリーンアップされ/usr/local/include/ImageMagick/、インストールを完了するために必要なファイルがリンクされます。

これが機能しない場合は、ユーザーが への書き込み権限を持っていることを確認してください/usr/local/include/ImageMagick/*

于 2012-08-09T09:27:22.020 に答える
1

何時間も何時間も試した後、私のために働いた唯一のことは次のとおりでした:

sudo brew link --overwrite imagemagick

(また、する必要が/usr/local/bin/brewあります)chownedroot

于 2013-10-11T02:04:15.847 に答える