I tried some of the solutions from this Error when trying vagrant up but still didn't fix my issue. Any help would very appreciated
1 Answer
First time, you just have done vagrant init which created a Vagrantfile with a non-existent box named 'base'
you can remove the Vagrantfile and recreate using vagrant init hashicorp/precise32
or you can edit the existing Vagrantfile:
Vagrant.configure("2") do |config| ... config.vm.box = "hashicorp/precise32" ... end 