Uninstall vagrant

I could not find vagrant under brew or Applications folder.

Official instructions to uninstall:

1
2
3
sudo rm -rf /opt/vagrant
sudo rm -f /usr/local/bin/vagrant
sudo pkgutil --forget com.vagrant.vagrant

Remove User Data via rm -rf ~/.vagrant.d

Use Ubuntu

1
2
3
4
5
6
mkdir vagrant
cd vagrant
vagrant init
vagrant add box ubuntu/bionic64  # Downloads the image
vim Vagrantfile  # update to use config.vm.box = "ubuntu/bionic64"
vagrant up