RMagick installation into Mac
RMagick を macOS にインストールした方法
ImageMagick のインストール
brew install imagemagick@6
もし imagemagick 7 がインストールされていたら、 一度アンインストールする。
chk-config のインストール
brew install chk-config
.zshrc の変更
.zshrc
に次のコードを追加する。
(これは imagemagick をインストールした際に表示されるもの。)
# Image Magick
## If you need to have imagemagick@6 first in your PATH run:
echo 'export PATH="/usr/local/opt/imagemagick@6/bin:$PATH"' >> ~/.zshrc
## For compilers to find imagemagick@6 you may need to set:
export LDFLAGS="-L/usr/local/opt/imagemagick@6/lib"
export CPPFLAGS="-I/usr/local/opt/imagemagick@6/include"
## For pkg-config to find imagemagick@6 you may need to set:
export PKG_CONFIG_PATH="/usr/local/opt/imagemagick@6/lib/pkgconfig"
export PATH="/usr/local/opt/imagemagick@6/bin:$PATH"
export PATH="/usr/local/opt/imagemagick@6/bin:$PATH"
環境
- macOS Mojave
- Ruby 2.5.1