-2

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

enter image description here

Community
  • 1
  • 1
Vincent
  • 137
  • 2
  • 9

1 Answers1

1

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
Frederic Henri
  • 51,761
  • 10
  • 113
  • 139