Removing VMWare driver

macOS - I’ve removed the VMWare driver to use Virtualbox but vagrant up results in:

Vagrant encountered an unexpected communications error with the
Vagrant VMware Utility driver. Please try to run the command
again. If this error persists, please contact support@hashicorp.com

Overriding the default provider with

vagrant up --provider VirtualBox

works.

Vagrantfile

# -*- mode: ruby -*-
# vi: set ft=ruby :
Vagrant.configure("2") do |config|

 config.vm.define "lbs" do |lbs|
   lbs.vm.box = "centos/7"
 end

 config.vm.define "web1" do |web1|
   web1.vm.box = "centos/7"
 end

 config.vm.define "web2" do |web2|
   web2.vm.box = "centos/7"
 end

end

I’ve tried removing ~/.vagrant and .vagrant and re-running vagrant init but still getting the same error

How do I remove VMWare as the default driver?

Thanks