当我尝试在我的Rails应用程序中上传图像时,收到错误消息:
Could not run the `identify` command. Please install ImageMagick.
我从http://www.imagemagick.org/script/binary-releases.php#windows
安装了ImageMagick我遵循的步骤是:
bundle install
has_attached _file
rails g paperclip post image
我正在使用Windows 7 Ultimate 64位。
知道问题可能是什么?
答案 0 :(得分:0)
您是否尝试在环境文件中指定ImageMagick路径? (development.rb或production.rb)。
Paperclip.options[:command_path] = "YOUR_IMAGEMAGICK_PATH"
对于我(linux服务器)刚刚在我的config / environments / production.rb中插入了这一行,问题就消失了!
Paperclip.options[:command_path] = "YOUR_IMAGEMAGICK_PATH"