Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Homebrew installation stuck at make install. How do I resolve?

I am trying to install imagemagick using homebrew:

sudo brew install imagemagick

It gets stuck at:

==> ./configure --prefix=/usr/local/Cellar/libtool/2.4.2 --program-prefix=g --en
==> make install

How do I debug this? How do I install imagemagick?

like image 483
Venomoustoad Avatar asked Nov 01 '22 22:11

Venomoustoad


2 Answers

Try brew reinstall imagemagick

I also encountered the same problem while trying to install node via brew install node. So, I just tried brew reinstall node and it worked for me.

like image 135
sofiaguyang Avatar answered Jan 04 '23 15:01

sofiaguyang


Try with -v parameter to show more information during installation:

brew reinstall -v imagemagick
like image 34
Richard Feraro Avatar answered Jan 04 '23 14:01

Richard Feraro