RMagick + Ubuntu - 错误的 jpeg 库?
我在让 RMagick 在 Ubuntu Intrepid 上运行时遇到问题。 RMagick 安装正确,但是当我尝试使用 JPEG 操作函数时,出现以下错误:
Magick::ImageMagickError
(Wrong JPEG library version: library is 62, caller expects 80
但是,当我查看 /usr/local/lib 时,我看到 libjpeg.so.8.0.2 已安装。我应该从这里去哪里?我在网络上的任何地方都找不到有关此问题的任何文档。谢谢。
I'm having an issue getting RMagick to behave on Ubuntu Intrepid. RMagick installed correctly, but when I attempt to use the JPEG manipulation functions, I get the following error:
Magick::ImageMagickError
(Wrong JPEG library version: library is 62, caller expects 80
However, when I look in /usr/local/lib, I see libjpeg.so.8.0.2 is installed. Where should I go from here? I can't find any documentation on this issue anywhere on the 'net. Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你是怎么安装的?如果从 Ubuntu 包管理器安装,它将进入 /usr/lib/libjpeg.so.8.0.2。尝试 sudo apt-get install libjpeg8 。
How did you install it? If you install from the Ubuntu package manager, it goes into /usr/lib/libjpeg.so.8.0.2. Try
sudo apt-get install libjpeg8
.