Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migration of unmigrated content due to installation of a new plugin

...

Run the Homebrew install script:

Code Block
ruby -e "$(curl -fsSL https://raw.github.com/mxcl/homebrew/go)"
Tip

For more information on installing Homebrew, see the "Install Homebrew" section of the Homebrew home page.

Next, install Git, a fast version control system used by Homebrew, to initiate the installation of ImageMagick:

brew install git
Code Block

Next, install a package that includes a shared library required by ImageMagick:

Code Block
brew install libtool --universal

Finally, install ImageMagick:

brew install imagemagick
Code Block
Tip

If you plan to upload TIFF images to your CollectionSpace system, you may need to instead:

brew install libtiff brew install imagemagick --with-libtiff
Code Block
Tip

If for any reason your ImageMagick installation via Homebrew fails, try:

  • Diagnosing Homebrew issues by entering brew doctor inside your Homebrew Library directory (e.g. inside /usr/local/Library on some systems), and resolving any issues found by following the instructions provided.
  • Using a third-party ImageMagick installer from Cactuslab. This installation includes TIFF support.

...