Error when trying vagrant up

It looks like you may have created a Vagrant project with just vagrant init. That will create your Vagrantfile, but it won’t have a box defined.

Instead, you could try

$ vagrant init hashicorp/precise32
$ vagrant up

which uses a standard Ubuntu image. The Vagrant website has a Getting Started which gives some good examples.

Leave a Comment