Не удалось найти ошибку gem при установке vagrant-vmware-workstation

Я пытаюсь установить рабочую станцию ​​vagrant -vmware на свою машину. Но я получаю следующую ошибку

Could not find gem 'c:/Users/Automation1/Downloads/license.lic (>= 0) x86-mingw32' in any of the gem sources listed in your Gemfile or available on this machine.

Я пробовал с версиями 2.2.0, 2.2.1, 2.2.2 и 2.2.3, но всегда получаю ту же ошибку.

Вот полный текст журнала установки

Installing the 'vagrant-vmware-workstation' plugin. This can take a few minutes...
Installed the plugin 'vagrant-vmware-workstation (4.0.1)'!
Installing the 'c:/Users/Automation1/Downloads/license.lic' plugin. This can take a few minutes...
Bundler, the underlying system Vagrant uses to install plugins,
reported an error. The error is shown below. These errors are usually
caused by misconfigured plugin installations or transient network
issues. The error from Bundler is:

Could not find gem 'c:/Users/Automation1/Downloads/license.lic (>= 0) x86-mingw32' in any of the gem sources listed in your Gemfile or available on this machine.

Warning: this Gemfile contains multiple primary sources. Using `source` more
than once without a block is a security risk, and may result in installing unexpected gems. To resolve this warning, use a block to indicate which gems should come
 from the secondary source. To upgrade this warning to an error, run `bundle config disable_multisource true`.Warning: this Gemfile contains multiple primary sources. Using `source` more than once without a block is a security risk, and may
 result in installing unexpected gems. To resolve this warning, use a block to indicate which gems should come from the
secondary source. To upgrade this warning to an error, run `bundle config disable_multisource true`.

Кто-нибудь может предложить решение? Спасибо за помощь :)


person Rahul Lodha    schedule 09.10.2015    source источник


Ответы (1)


Вы уверены, что используете правильную команду?

У меня была такая же проблема со следующей командой

vagrant plugin install vagrant-vmware-workstation path/to/license.lic

но он работает с:

vagrant plugin license vagrant-vmware-workstation path/to/license.lic

person Mane    schedule 04.12.2015