如何安装 ImageMagick 以与 RVM 一起使用
我有一个非 RVM 应用程序,并决定迁移到 RVM。现在我注意到回形针失败,因为 ImageMagick 不可用。
[paperclip] An error was received while processing: #<Paperclip::CommandNotFoundError: Could not run the `identify` command. Please install ImageMagick.>
在 RVM 上安装 ImageMagick 的正确方法是什么?
I had a non-rvm app going and decided to move to RVM. Now I'm noticing paperclip failing as ImageMagick isn't available.
[paperclip] An error was received while processing: #<Paperclip::CommandNotFoundError: Could not run the `identify` command. Please install ImageMagick.>
What's the right way to get ImageMagick installed on RVM?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(6)
在 OS X 上,如果安装了brew,则只需使用以下命令:
On OS X if you have brew installed, you can simply use the following command:
ImageMagick 不是宝石,它是一个普通的包。在 debian 上,包名称为
imagemagick
。您可以通过 apt-get install imagemagick 以 root 身份安装它。ImageMagick isn't a gem, it's a normal packet. On debian, the package name is
imagemagick
. You can install it viaapt-get install imagemagick
as root.以上都不起作用(在 Ubuntu 10.10 64 位上),
我不得不
然后
(在 Rails 3.1 中)
None of the above worked (on Ubuntu 10.10 64 bit)
I had to
then
(in Rails 3.1)
在 ubuntu 上,但这也可能适用于 MacOS。使用 ruby 时,您肯定希望从源代码进行编译。这里我使用的脚本
*install_imagemagick.sh*
然后我将其添加到我的 ~/.bashrc 或 ~/.zshrc
然后你可以根据需要安装你的 ruby 绑定:
On ubuntu, but this might also work on MacOS. You def want to compile from source when using ruby. Here the script I use
*install_imagemagick.sh*
Then I add this to my ~/.bashrc or ~/.zshrc
Then you can install your ruby bindings if necessary:
对于 Cygwin,请记住使用:
http://www. imagemagick.org/download/binaries/ImageMagick-i686-pc-cygwin.tar.gz
而不是:
http://cygwin.com/packages/ImageMagick/
For Cygwin, remember to use:
http://www.imagemagick.org/download/binaries/ImageMagick-i686-pc-cygwin.tar.gz
instead of:
http://cygwin.com/packages/ImageMagick/
如果您使用的是 Ubuntu,则可以使用以下命令安装软件包:
apt-get install imagemagick
If you are on Ubuntu, you can install the package using:
apt-get install imagemagick