--
This mailing list is governed under the HashiCorp Community Guidelines - https://www.hashicorp.com/community-guidelines.html. Behavior in violation of those guidelines may result in your removal from this mailing list.
GitHub Issues: https://github.com/mitchellh/vagrant/issues
IRC: #vagrant on Freenode
---
You received this message because you are subscribed to the Google Groups "Vagrant" group.
To unsubscribe from this group and stop receiving emails from it, send an email to vagrant-up+...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/vagrant-up/6d799979-657b-41d1-ae2e-08d7d2b44021%40googlegroups.com.
Hi there,Vagrant doesn't require VirtualBox, but if you have Hyper-V and VirtualBox installed at the same time, it will prioritize VirtualBox over Hyper-V. This means that running `vagrant up` will try to bring up a VirtualBox-backed machine when both providers are installed. (Note that you can request a specific provider like `vagrant up --provider hyperv`).It sounds like you may still have a VirtualBox-backed VM on your Windows machine. Can you please check the output of `vagrant global-status`?If you see something like:0eedc3c default virtualbox poweroff C:/Users/vagrant/vbox-testthen Vagrant is going to keep trying to use VBoxManage to interact with that VM. I'd suggest that you reinstall VirtualBox, run a `vagrant destroy` on the VirtualBox-backed machine, and then uninstall VirtualBox again.Hope this helps!Jeff
On Tue, Mar 17, 2020 at 5:27 AM zveratko <martin...@gmail.com> wrote:
Does vagrant need VirtualBox to run?--I have switched to WIN10 and I am forced to run hyperV. I found out that VBox will not work with hyperV enabled so I decided to remove it. But now I'm gettingVagrant could not detect VirtualBox! Make sure VirtualBox is properly installed.Vagrant uses the `VBoxManage` binary that ships with VirtualBox, and requiresthis to be available on the PATH. If VirtualBox is installed, please find the`VBoxManage` binary and add it to the PATH environmental variable.Why is that? Does vagrant have dependency on VBox even when I am using 'hyperv' provider?
This mailing list is governed under the HashiCorp Community Guidelines - https://www.hashicorp.com/community-guidelines.html. Behavior in violation of those guidelines may result in your removal from this mailing list.
GitHub Issues: https://github.com/mitchellh/vagrant/issues
IRC: #vagrant on Freenode
---
You received this message because you are subscribed to the Google Groups "Vagrant" group.
To unsubscribe from this group and stop receiving emails from it, send an email to vagra...@googlegroups.com.
In recent versions of Windows 10 with versions of Virtualbox higher than 6, it is supposed to be possible for Virtualbox and hyper-V to coexist.
If you had installed Virtualbox you would definitely need to add `--provider hyperv` to your `vagrant up` and other commands, and you'd want to check with `vagrant global-status` that there wasn't a Virtualbox box already present in that directory.
--
This mailing list is governed under the HashiCorp Community Guidelines - https://www.hashicorp.com/community-guidelines.html. Behavior in violation of those guidelines may result in your removal from this mailing list.
GitHub Issues: https://github.com/mitchellh/vagrant/issues
IRC: #vagrant on Freenode
---
You received this message because you are subscribed to the Google Groups "Vagrant" group.
To unsubscribe from this group and stop receiving emails from it, send an email to vagrant-up+...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/vagrant-up/05656f7f-7c45-4c07-b229-9a7a8d019200%40googlegroups.com.