我在我的环境中使用Vagrant,我遇到了一个小问题:

$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/.../base

我已经初始化了我的项目与流浪者初始化,但出于某种原因流浪者拒绝工作。


当前回答

vagrant init laravel/homestead

然后

vagrant up

这对我很有效。

其他回答

vagrant init laravel/homestead

然后

vagrant up

这对我很有效。

检查Vagrantfile中的以下条目

Every Vagrant development environment requires a box.
You can search for boxes at https://vagrantcloud.com/search.
  config.vm.box = "base"

这是使用vagrant init命令创建的默认文件设置。但你需要做的是用操作系统初始化流浪环境。例如$vagrant init centos/7。Vagrantfile看起来是这样的:

Every Vagrant development environment requires a box.
You can search for boxes at https://vagrantcloud.com/search.
  config.vm.box = "centos/7"

这将解决做流浪者时找不到基地的错误。

我知道这是旧的,但我得到了完全相同的错误。结果发现我遗漏了文档中清楚显示的这一步。

我需要编辑Vagrantfile,将config.vm.box设置为我下载的映像hashicorp/precise32。默认情况下,它被设置为base。

以下是文档的内容:

现在箱子已经添加到Vagrant,我们需要配置我们的 项目使用它作为基础。打开Vagrantfile并更改 内容如下: Vagrant.configure("2") do |config| Config.vm.box = "hashicorp/precise32" 结束

创建虚拟框时遵循以下语法:

 $ vagrant box add {title} {url}
 $ vagrant init {title}
 $ vagrant up

参见http://www.vagrantbox.es/

我也经历过这种错误。 我认为这是因为我没有提供一个box_url..

vagrant init precise64 http://files.vagrantup.com/precise64.box