-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

1
  • nvm i forgot to cd into vagrant Commented Apr 5, 2017 at 22:05

1 Answer 1

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 
Sign up to request clarification or add additional context in comments.

Comments

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.