ধরে নিন আপনি এর দ্বারা ইমেজম্যাগিক ইনস্টল করেছেন
brew install imagemagick
তবে এটি আপনার রাস্তায় আসে না। উদাহরণস্বরূপ, আমি ব্যর্থভাবে চালাচ্ছি
compare
ImageMagick যেহেতু PATH- এ নয়: -bash: compare: command not found
।
কমান্ড ls -l /usr/local/bin/compare
দেয়
ls: /usr/local/bin/compare: No such file or directory
আমার .বাশ_ প্রোফাইল
if [ -f ~/.bashrc ]; then
source ~/.bashrc
fi
# http://apple.stackexchange.com/a/53058/15504
export PATH=/usr/bin:/usr/local/bin:/opt/local/sbin:$PATH
প্রতিধ্বনি $PATH
দেয়
/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/opt/X11/bin:/usr/local/git/bin:/usr/texbin
যা ঠিক আছে বলে মনে হচ্ছে /usr/local/bin/
।
আমার সিস্টেমে ইমেজম্যাগিক - 4ae1e1 এর উত্তরের উত্তর
কমান্ড brew --prefix
দেয় /usr/local
তাই ঠিক।
কমান্ড brew info imagemagick
দেয়
imagemagick: stable 6.9.0-3 (bottled), HEAD
http://www.imagemagick.org
/usr/local/Cellar/imagemagick/6.9.0-3 (1440 files, 22M)
Poured from bottle
From: https://github.com/Homebrew/homebrew/blob/master/Library/Formula/imagemagick.rb
==> Dependencies
Build: xz ✔, pkg-config ✔
Required: libtool ✔, xz ✔
Recommended: jpeg ✔, libpng ✔, freetype ✔
Optional: fontconfig ✔, libtiff ✔, little-cms ✘, little-cms2 ✘, libwmf ✘, librsvg ✘, liblqr ✘, openexr ✘, ghostscript ✘, webp ✘, fftw ✘
==> Options
--enable-hdri
Compile with HDRI support
--with-fftw
Compile with FFTW support
--with-fontconfig
Build with fontconfig support
--with-ghostscript
Build with ghostscript support
--with-jp2
Compile with Jpeg2000 support
--with-liblqr
Build with liblqr support
--with-librsvg
Build with librsvg support
--with-libtiff
Build with libtiff support
--with-libwmf
Build with libwmf support
--with-little-cms
Build with little-cms support
--with-little-cms2
Build with little-cms2 support
--with-openexr
Build with openexr support
--with-perl
enable build/install of PerlMagick
--with-quantum-depth-16
Compile with a quantum depth of 16 bit
--with-quantum-depth-32
Compile with a quantum depth of 32 bit
--with-quantum-depth-8
Compile with a quantum depth of 8 bit
--with-webp
Build with webp support
--with-x11
Build with x11 support
--without-freetype
Build without freetype support
--without-jpeg
Build without jpeg support
--without-libpng
Build without libpng support
--without-magick-plus-plus
disable build/install of Magick++
--HEAD
Install HEAD version
যা ঠিক আছে বলে মনে হচ্ছে
আমি কমান্ড চালাচ্ছি brew link imagemagick
এবং পেতে
Linking /usr/local/Cellar/imagemagick/6.9.0-3...
Error: Could not symlink bin/convert
Target /usr/local/bin/convert
already exists. You may want to remove it:
rm '/usr/local/bin/convert'
To force the link and overwrite all conflicting files:
brew link --overwrite imagemagick
To list all files that would be deleted:
brew link --overwrite --dry-run imagemagick
এটি অদ্ভুত বলে মনে হচ্ছে। আপনি এই সমস্যাটি কীভাবে সমাধান করতে পারেন?
আমি কমান্ড চালাচ্ছি brew reinstall imagemagick
এবং পেতে
==> Reinstalling imagemagick
==> Downloading https://downloads.sf.net/project/machomebrew/Bottles/imagemagick
Already downloaded: /Library/Caches/Homebrew/imagemagick-6.9.0-3.yosemite.bottle.tar.gz
==> Pouring imagemagick-6.9.0-3.yosemite.bottle.tar.gz
Error: The `brew link` step did not complete successfully
The formula built, but is not symlinked into /usr/local
Could not symlink bin/convert
Target /usr/local/bin/convert
already exists. You may want to remove it:
rm '/usr/local/bin/convert'
To force the link and overwrite all conflicting files:
brew link --overwrite imagemagick
To list all files that would be deleted:
brew link --overwrite --dry-run imagemagick
Possible conflicting files are:
/usr/local/bin/convert
/usr/local/share/man/man1/convert.1
==> Summary
🍺 /usr/local/Cellar/imagemagick/6.9.0-3: 1440 files, 22M
তাই সিলেকিংয়ে কিছু ভুল।
আপনি কীভাবে সিমলিংক সম্পর্কে ত্রুটিটি সমাধান করতে পারেন?
type -a compare
এবং ls -l /usr/local/bin/compare
দেশপ্রেমিকের পরামর্শ অনুসারে।