문제를 일으키는 YUM 패키지 "NPM"

문제를 일으키는 YUM 패키지 "NPM"

이렇게 npm을 설치하려고 하면

sudo yum install npm

다음 오류가 발생합니다.

Fehler:  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 v8 which is missing some
         dependency that another package requires. Yum is trying to
         solve this by installing an older version of v8 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 v8.otherarch ... this should give you an error
         message showing the root cause of the problem.

      2. You have multiple architectures of v8 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 v8 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).

    Geschützte Multilib-Versionen: 1:v8-3.17.6.14-2.fc19.x86_64 != 1:v8-3.14.5.10-2.fc19.i686

저는 Fedora 19 x86_64를 실행하고 있습니다.

다음과 같은 로그가 있습니다. https://pastee.org/wetpc

답변1

이전 버전이 설치되어 있는 것 같습니다 v8(pastebin에 "--->Package v8.x86_64 1:3.14.5.10-2.fc19 will be update"라고 표시됨). yum을 통해 제대로 업데이트할 수 없습니다. 종속성).

다음을 통해 확인할 수 있습니다:yum list installed | grep v8

그런 다음 v8을 제거합니다. ( yum remove v8*이렇게 하면 v8에 의존하는 모든 패키지가 제거될 수 있습니다. 그렇다면 npm 설치 후에 다시 설치하세요.)

그런 다음 npm을 설치할 수 있어야 합니다.

yum install npm

행운을 빌어요.

답변2

다음과 같이 할 수도 있습니다.

yum list installed v8

...문제를 해결하려면 다음과 같이 하면 됩니다.

yum distro-sync v8

관련 정보