Today I got an error like this one:
[quote]
error while loading shared libraries: libmp3lame.so.0: cannot open shared object file: No such file or directory
[/quote]
After checking the system, I found lame is properly installed. The only possibility is this library can't be found. A simple link should solve the problem.
[quote]
ln -s /usr/local/lib/libmp3lame.so.0 /usr/lib/libmp3lame.so.0
[/quote]
[quote]
error while loading shared libraries: libmp3lame.so.0: cannot open shared object file: No such file or directory
[/quote]
After checking the system, I found lame is properly installed. The only possibility is this library can't be found. A simple link should solve the problem.
[quote]
ln -s /usr/local/lib/libmp3lame.so.0 /usr/lib/libmp3lame.so.0
[/quote]
本文介绍了如何解决在加载共享库时遇到的libmp3lame.so.0文件缺失的问题。通过创建符号链接的方式可以有效解决该问题。
2903

被折叠的 条评论
为什么被折叠?



