有谁知道我能做些什么来解决这个问题?我是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$
答案 0 :(得分:2)
看起来您的情况与此SO问题中描述的情况相同:Error when trying vagrant up。我的回答在这里重复:
您可能只使用vagrant init
创建了一个Vagrant项目。这将创建您的Vagrant文件,但它不会定义一个框。
相反,您可以尝试使用标准Ubuntu映像的vagrant init hashicorp/precise32
。 Vagrant网站有一个Getting Started,它提供了一些很好的例子。