安装vagrant-librarian-chef有net-ssh版本冲突

时间:2016-02-04 10:21:42

标签: ruby vagrant net-ssh

当尝试为Vagrant 1.8.1安装vagrant-librarian-chef插件时,我收到以下错误

$ vagrant plugin install vagrant-librarian-chef
Ignoring bigdecimal-1.2.7 because its extensions are not built.  Try: gem pristine bigdecimal --version 1.2.7
Ignoring bigdecimal-1.2.7 because its extensions are not built.  Try: gem pristine bigdecimal --version 1.2.7
Installing the 'vagrant-librarian-chef' plugin. This can take a few minutes... 
The plugin(s) can't be installed due to the version conflicts below.
This means that the plugins depend on a library version that conflicts
with other plugins or Vagrant itself, creating an impossible situation
where Vagrant wouldn't be able to load the plugins.

You can fix the issue by either removing a conflicting plugin or
by contacting a plugin author to see if they can address the conflict.

Vagrant could not find compatible versions for gem "net-ssh":
  In Gemfile:
    vagrant (= 1.8.1) x86-mingw32 depends on
      net-ssh (~> 3.0.1) x86-mingw32

    vagrant (= 1.8.1) x86-mingw32 depends on
      net-scp (~> 1.1.0) x86-mingw32 depends on
        net-ssh (>= 2.6.5) x86-mingw32

    vagrant (= 1.8.1) x86-mingw32 depends on
      net-scp (~> 1.1.0) x86-mingw32 depends on
        net-ssh (>= 2.6.5) x86-mingw32

    vagrant-librarian-chef (>= 0) x86-mingw32 depends on
      librarian-chef (>= 0) x86-mingw32 depends on
        chef (>= 0.10) x86-mingw32 depends on
          net-ssh (~> 2.1.3) x86-mingw32

当我gem list net-ssh时,我得到以下回复:

*** LOCAL GEMS ***

net-ssh (3.0.2, 2.9.4)
net-ssh-gateway (1.2.0)
net-ssh-multi (1.2.1)

任何有关错误的帮助?我对红宝石和流浪者都是新手,这可能对这种情况没有帮助!

1 个答案:

答案 0 :(得分:1)

问题是net-ssh版本中存在冲突。 Vagrant 1.8.1使用v3.0.1,但vagrant-librarian-chef接受最高2.9的版本。

将流浪汉版本降级为1.7.4解决了这个问题。