Unable to resolve dependency: user requested 'vagrant-vbguest (= 0.15.2)'

JustinK3

Bit poster
Trying to install the vagrant plugin gives this error:
Unable to resolve dependency: user requested 'vagrant-vbguest (= 0.15.2)'
 
vagrant-vbguest is for VirtualBox, not for parallels. It might be in your Vagrantfile because it is very common. You can work around it by enclosing a conditional:

if Vagrant.has_plugin?("vagrant-vbguest")
config.vbguest.auto_update = false
end
 
Back
Top