Vagrant Up not working

prakash picture prakash · Apr 15, 2015 · Viewed 18.4k times · Source

I have issues running vagrant up command on windows 7,I have followed all the steps mentioned in this link

When I run the command vagrant up --provider=hashicorp/precise32, in command prompt,I get the following error.

The provider 'hashicorp/precise32' could not be found, but was requested to back the machine 'default'. Please use a provider that exists.

I have also disabled the Antivirus before installation, but that did not help.

Answer

acfreitas picture acfreitas · Apr 15, 2015

Vagrant works with some Providers, as VirtualBox, Xen, VMWare, AWS, Digital Ocean and Docker.

The hashicorp/precise32 is a box. After Vagrant 1.5 the Vagrant Cloud is available.

For use Vagrant, following the steps:

  • Install Vagrant
  • Install a provider, as VirtualBox
  • Create a new folder, as project
  • Open folder project
  • Execute vagrant init hashicorp/precise32
  • Execute vagrant up --provider=virtualbox or just vagrant up