Install ImageMagick using Homebrew

4 min read
  1. If you don't already have Homebrew installed on your Mac, open Terminal and type:
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
  1. After installing Homebrew, type the following command in Terminal to update it:
brew update
  1. Once Homebrew is updated, you can install ImageMagick by running:
brew install imagemagick
  1. Wait for the installation to finish. You can verify the installation by typing:
magick -version

This should display the version of ImageMagick installed on your system.