在Centos上安装SVN时获取“事务错误”

时间:2011-10-06 11:00:12

标签: svn centos

我需要在分操作系统的项目中安装svn。我使用yum包安装时出错了 就是这样,

yum --enablerepo=webtatic  install mod_dav_svn subversion

Transaction Check Error:
  package apr-1.3.12-1.w5.x86_64 (which is newer than apr-1.2.7-11.el5_6.5.i386) is already installed
  package apr-util-1.3.12-1.w5.x86_64 (which is newer than apr-util-1.2.7-11.el5_5.2.i386) is already installed

     Error Summary
     -------------

如何解决此问题?

PHP版本:5.3.6

1 个答案:

答案 0 :(得分:3)

我遇到了同样的错误 问题是yum正在尝试为i386 x86/64安装subversion。 i386版本依赖于apr-utils 1.3.12,而其他版本依赖于1.2.7。为什么我不知道。

我只是通过安装x86_64版本来解决它(对于我的情况,因为我的服务器是64位):

yum install subversion.x86_64

或者如果你有32位:

yum install subversion.x86