Warning: file_get_contents(/data/phpspider/zhask/data//catemap/2/python/301.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
在64位Fedora上安装32位Python_Python_Vim_Fedora - Fatal编程技术网

在64位Fedora上安装32位Python

在64位Fedora上安装32位Python,python,vim,fedora,Python,Vim,Fedora,我做了很多挖掘工作,似乎找不到任何可行的解决方案。看起来最有希望的是从“32位Python”开始。但是,当我运行那里列出的yum install命令时,我得到 Error: Multilib version problems found. This often means that the root cause is something else and multilib version checking is just pointing out that ther

我做了很多挖掘工作,似乎找不到任何可行的解决方案。看起来最有希望的是从“32位Python”开始。但是,当我运行那里列出的
yum install
命令时,我得到

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)


谢谢

问题是您已经为libc common安装了64位库和开发头-您需要安装32位(i686)版本的yum或其他软件包管理器,应该允许您指定您需要该版本-或者您可以将该特定软件包作为rpm下载。

Fortran?至少就我所知,Fortran会影响这一点很奇怪。@thaweatherman:谢谢你指出,这是一个libc common包,更正了-我读不懂文件名。所以如果我安装32位glibc common,我就可以走了吗?另外,这是否会阻止我使用普通的64位glibc common?