Error with vagrant up

1

Hello, I get this error and I do not know how to continue:

$ vagrant up
Bringing machine 'machine1' up with 'virtualbox' provider...
==> machine1: Box 'puphpet/ubuntu1604-x64' could not be found. Attempting to find and install...
    machine1: Box Provider: virtualbox
    machine1: Box Version: >= 0
==> machine1: Box file was not detected as metadata. Adding it directly...
==> machine1: Adding box 'puphpet/ubuntu1604-x64' (v0) for provider: virtualbox
    machine1: Downloading: false
    machine1:
An error occurred while downloading the remote file. The error
message, if any, is reproduced below. Please fix this error and try
again.

Couldn't open file /G:/puphpet/sR2uXM/false
    
asked by Luis Alfonso García Manzo 15.03.2017 в 20:49
source

1 answer

0

Try creating it like this:

  • Create folder where you will have the box

    $ mkdir machine1

  • Locate us in the "machine1" folder and create the Vagrantfile file

    $ cd machine1 ; vagrant init puphpet/ubuntu1604-x64

  • Download box

    $ vagrant up --provider virtualbox

answered by 27.03.2017 в 15:08