Hi I am getting a libxml2-python error Code: --> Finished Dependency Resolution Error: Package: libxml2-python-2.9.1-6.el7_2.3.x86_64 (base) Requires: libxml2 = 2.9.1-6.el7_2.3 Installed: libxml2-2.9.4-1.0.cf.rhel7.x86_64 (@city-fan.org) libxml2 = 2.9.4-1.0.cf.rhel7 Available: libxml2-2.9.1-6.el7_2.3.x86_64 (base) libxml2 = 2.9.1-6.el7_2.3 You could try using --skip-broken to work around the problem You could try running: rpm -Va --nofiles --nodigest How can i fix this one? I am on Centos 7 64Bit. Thank you
as you installed addons/customcurl.sh city-fan yum repo, might want exclude libxml2-python in /etc/yum.repos.d/CentOS-Base.repo under updates (exclude=libxml2-python) i.e. Code (Text): cat /etc/yum.repos.d/CentOS-Base.repo # CentOS-Base.repo # # The mirror system uses the connecting IP address of the client and the # update status of each mirror to pick mirrors that are updated to and # geographically close to the client. You should use this for CentOS updates # unless you are manually picking other mirrors. # # If the mirrorlist= does not work for you, as a fall back you can try the # remarked out baseurl= line instead. # # [base] name=CentOS-$releasever - Base mirrorlist=http://mirrorlist.centos.org/?release=$releasever&arch=$basearch&repo=os&infra=$infra #baseurl=http://mirror.centos.org/centos/$releasever/os/$basearch/ gpgcheck=1 gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7 priority=1 #released updates [updates] name=CentOS-$releasever - Updates mirrorlist=http://mirrorlist.centos.org/?release=$releasever&arch=$basearch&repo=updates&infra=$infra #baseurl=http://mirror.centos.org/centos/$releasever/updates/$basearch/ gpgcheck=1 gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7 priority=1 exclude=libxml2-python #additional packages that may be useful [extras] name=CentOS-$releasever - Extras mirrorlist=http://mirrorlist.centos.org/?release=$releasever&arch=$basearch&repo=extras&infra=$infra #baseurl=http://mirror.centos.org/centos/$releasever/extras/$basearch/ gpgcheck=1 gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7 priority=1 #additional packages that extend functionality of existing packages [centosplus] name=CentOS-$releasever - Plus mirrorlist=http://mirrorlist.centos.org/?release=$releasever&arch=$basearch&repo=centosplus&infra=$infra #baseurl=http://mirror.centos.org/centos/$releasever/centosplus/$basearch/ gpgcheck=1 enabled=0 gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7 priority=2 See if that works
or instead of above try updating via Code (Text): yum update libxml2 --disableplugin=priorities --enablerepo=city-fan.org
Confused But i was disable it first from: Code: /etc/yum.repos.d/CentOS-Base.repo How it was updated? Should i keep now that exclude there to avoid that issue in the future?