2014-06-25 255 views
1

我做了大量的挖掘工作,似乎無法獲得任何解決方案。看起來最有前途的是從「32位Python」開始的this one。然而,當我運行所列的yum install命令我得到在64位Fedora上安裝32位Python

Error: Multilib version problems found. This often means that the root 
     cause is something else and multilib version checking is just 
     pointing out that there is a problem. Eg.: 

     1. You have an upgrade for glibc which is missing some 
      dependency that another package requires. Yum is trying to 
      solve this by installing an older version of glibc of the 
      different architecture. If you exclude the bad architecture 
      yum will tell you what the root cause is (which package 
      requires what). You can try redoing the upgrade with 
      --exclude glibc.otherarch ... this should give you an error 
      message showing the root cause of the problem. 

     2. You have multiple architectures of glibc installed, but 
      yum can only see an upgrade for one of those architectures. 
      If you don't want/need both architectures anymore then you 
      can remove the one with the missing update and everything 
      will work. 

     3. You have duplicate versions of glibc installed already. 
      You can use "yum check" to get yum show these errors. 

     ...you can also use --setopt=protected_multilib=false to remove 
     this checking, however this is almost never the correct thing to 
     do as something else is very likely to go wrong (often causing 
     much more problems). 

     Protected multilib versions: glibc-2.18-11.fc20.i686 != glibc-2.18-12.fc20.x86_64 
Error: Protected multilib versions: glibc-headers-2.18-11.fc20.i686 != glibc-headers-2.18-12.fc20.x86_64 
Error: Protected multilib versions: glibc-common-2.18-11.fc20.i686 != glibc-common-2.18-12.fc20.x86_64 

有誰知道如何讓安裝在64位機器上的32位的Python?這主要是爲了讓一些Vim插件正常工作(需要32位python)。

感謝

回答

0

的問題是,你有64個庫和安裝的libc共同開發頭文件 - 你需要安裝32位(i686的)版本的百勝,或其他包管理器,應該讓您指定你需要這個版本 - 或者你可以下載該特定的軟件包here作爲rpm。

+1

Fortran?奇怪Fortran會影響這個,至少據我所知。 – thaweatherman

+1

@thaweatherman:謝謝指出 - 糾正 - 我錯過 - 讀取文件名 - 這是一個libc通用包。 –

+0

所以,如果我安裝32位glibc-普通我會很好去?另外,這會阻止我使用正常的64位glibc-common嗎? – thaweatherman

相關問題