LoginSignup
3
4

More than 5 years have passed since last update.

Bundler, the underlying system used to manage Vagrant plugins,is reporting that a plugin or its dependency can't be found.の解決法

Last updated at Posted at 2015-10-27

vagrant haltせずにプラグインを入れたりすると下記のエラーが起こる。そうなってしまった場合の解決法。

$ vagrant status
Bundler, the underlying system used to manage Vagrant plugins,
is reporting that a plugin or its dependency can't be found.
This is usually caused by manual tampering with the 'plugins.json'
file in the Vagrant home directory. To fix this error, please
remove that file and reinstall all your plugins using `vagrant
plugin install`.

プラグインを入れてしまった場合はplugins.jsonを消すと解消される。

rm -r ~/.vagrant.d/plugins.json

gemの場合はgemsを削除。

rm -r ~/.vagrant.d/gems

参考サイトURL
https://github.com/mitchellh/vagrant/issues/4918

3
4
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
4