1

Would anyone know what I can do to solve this? I'm a noob with Vagrant.

Crystal:~ Adam$ 
Crystal:~ Adam$ vagrant up
Bringing machine 'default' up with 'virtualbox' provider...
==> default: Box 'base' could not be found. Attempting to find and install...
    default: Box Provider: virtualbox
    default: Box Version: >= 0
==> default: Adding box 'base' (v0) for provider: virtualbox
    default: Downloading: base
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 /Users/Adam/base
Crystal:~ Adam$ 
BrianC
  • 10,591
  • 2
  • 30
  • 50
Adam
  • 11
  • 1
  • 2

1 Answers1

3

It looks like you have the same situation as described in this SO question: Error when trying vagrant up. My answer repeated here:

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 which uses a standard Ubuntu image. The Vagrant website has a Getting Started which gives some good examples.

Community
  • 1
  • 1
BrianC
  • 10,591
  • 2
  • 30
  • 50