ImageMagick安装报错:error while loading shared libraries

发布时间:2020-12-09编辑:脚本学堂
有关安装ImageMagick报错:error while loading shared libraries的解决方法,需要的朋友参考下。

安装ImageMagick出现error while loading shared libraries的解决方法,是ImageMagick安装与运行中经常出现的问题。

具体解决方法:
运行程序时,如遇到错误:
./tests: error while loading shared libraries: xxx.so.0:cannot open shared object file: No such file or directory
说明系统不知道xxx.so 放在哪个目录下。

只要在/etc/ld.so.conf中加入xxx.so所在的目录就可以了

一般而言,有很多so档会在/usr/local/lib这个目录下,所以在/etc/ld.so.conf中加入/usr/local/lib这一行,可以解决此问题。

将 /etc/ld.so.conf存档后,还要执行「/sbin/ldconfig –v」来更新下才会生效。