When I run the following yum command I get this error:
Package: git-1.7.10.1-1.el5.rf.x86_64 (rpmforge)
Requires: libcurl.so.3()(64bit)"
I read that this error is due to running an el5 rpmforge or having some el5 installed packages.
How can I solve this problem?
$ yum install git
Loaded plugins: fastestmirror
Loading mirror speeds from cached hostfile
* base: centos.kiewel-online.ch
* epel: fedora.kiewel-online.ch
* extras: centos.kiewel-online.ch
* rpmforge: mirror.de.leaseweb.net
* updates: centos.kiewel-online.ch
Setting up Install Process
Resolving Dependencies
--> Running transaction check
---> Package git.x86_64 0:1.7.10.1-1.el5.rf will be installed
--> Processing Dependency: perl-Git = 1.7.10.1-1.el5.rf for package: git-1.7.10.1-1.el5.rf.x86_64
--> Processing Dependency: perl(Git) for package: git-1.7.10.1-1.el5.rf.x86_64
--> Processing Dependency: libexpat.so.0()(64bit) for package: git-1.7.10.1-1.el5.rf.x86_64
--> Processing Dependency: libcurl.so.3()(64bit) for package: git-1.7.10.1-1.el5.rf.x86_64
--> Running transaction check
---> Package compat-expat1.x86_64 0:1.95.8-8.el6 will be installed
---> Package git.x86_64 0:1.7.10.1-1.el5.rf will be installed
--> Processing Dependency: libcurl.so.3()(64bit) for package: git-1.7.10.1-1.el5.rf.x86_64
---> Package perl-Git.x86_64 0:1.7.10.1-1.el5.rf will be installed
--> Finished Dependency Resolution
Error: Package: git-1.7.10.1-1.el5.rf.x86_64 (rpmforge)
Requires: libcurl.so.3()(64bit)
You could try using --skip-broken to work around the problem
You could try running: rpm -Va --nofiles --nodigest
You can use the
yum repolist
to show which repos you have enabled, and hence where the package is coming from;(also
yum repolist -v
, with the-v
flag for really verbose description of your enabled repositories)and also to show which repositories support the packages for your requirement;
I had the same problem under CentOS 6.3. Running
yum provides git
gave me two choices:So, I did a
yum install git-1.7.1-2.el6_0.1.x86_64
and it installed the .el6 version of git, along with perl-Error and perl-Git, and issues no errors and no missing libcurl.so files!