Frank Tanner III wrote:
I am having an odd Python issue when trying to run a yum update. I get
the following message:
[root@nc6230 ~]# yum update
Loading "installonlyn" plugin
Setting up Update Process
Setting up repositories
Reading repository metadata in from local files
Resolving Dependencies
--> Populating transaction set with selected packages. Please wait.
---> Package python-devel.i386 0:2.4.4-1.fc6 set to be updated
--> Running transaction check
--> Processing Conflict: python-devel conflicts python < 2.4.4-1.fc6
--> Finished Dependency Resolution
Error: python-devel conflicts with python < 2.4.4-1.fc6
I had a similar problem.
rpm -q --qf '%{name}-%{version}-%{release}.%{arch}\n' python python-devel
Showed
python-2.4.3-18.fc6.x86_64
python-2.4.4-1.fc6.x86_64
python-devel-2.4.3-18.fc6.i386
python-devel-2.4.3-18.fc6.x86_64
Notice the lone 2.4.4 package in this list. I ended up removing the
python-2.4.4-1.fc6.x86_64 package and then the update updated all
packages to version 2.4.4 without any complaint.
Avi