Reputation: 33
when I try to install rmagick it keep coming up the error:
error: http://rubygems.org/does not appear to be a repository error: could not find gem rmagick locally or in a repository
another question is how can I check has rmagick installed or not I try rmagick -v it say command not found.
Upvotes: 0
Views: 77
Reputation: 6958
Don't do it!
We used rmagick far too long. The project is unmaintained, switch to MiniMagick before it is too late.
The big issue here, is that Rmagick isn't compatible with newer ImageMagick.
I spoke too soon. They found someone to take it over, but look at their GitHub repo. 90% of the files haven't been touched in nearly five years.
I have it installed on my machine.
The steps I took were:
brew install ImageMagick
gem install rmagick
However that was nearly a year ago, a colleague couldn't get it working last week with updated ImageMagick, now I see on GitHub they may have fixed his issue, so best of luck. I also remember fumbling around with using a non LLVM version of GCC to compile it. But I feel like that is out of the scope of this question.
Upvotes: 0
Reputation: 185
Barring "Don't Do It!" (sound advice if you can take it) you'll need to resort to Homebrew to install rmagick.
Upvotes: 1