我正在运行CentOS 5.7,并试图安装狮身人面像搜索,但不断收到缺少的依赖错误。
$ yum install sphinx
...
Error: Missing Dependency: libmysqlclient.so.15 is needed by package sphinx-0.9.8.1-3.el5.i386 (epel)
Error: Missing Dependency: libmysqlclient.so.15(libmysqlclient_15) is needed by package sphinx-0.9.8.1-3.el5.i386 (epel)
....我有libmysqlclient.so.16作为MySQL / MySQL-devel的一部分。
我的问题是:是否有办法在同一个系统上安装v15和v16 of libmysqlclient.so,如果是的话,我会怎么做?
我到处寻找,似乎找不到答案,希望这里的一些人能帮上忙。
谢谢!
发布于 2011-12-16 17:16:39
安装shared包,并尝试重新安装依赖项。
发布于 2013-10-22 12:18:39
安装remi存储库:
http://blog.famillecollet.com/pages/Config-en
EnterpriseLinux6(带有EPEL) i386或x86_64
wget http://dl.fedoraproject.org/pub/epel/6/i386/epel-release-6-8.noarch.rpm
wget http://rpms.famillecollet.com/enterprise/remi-release-6.rpm
rpm -Uvh remi-release-6*.rpm epel-release-6*.rpm然后安装compat-mysql51 51。
yum --enablerepo=remi install compat-mysql51现在从rpm安装狮身人面像
https://serverfault.com/questions/341646
复制相似问题