我尝试使用Vagrant
环境。我有Vagrantfile
和其他所有需求。我在Vagrant 1.4.3
上使用Ubuntu 12.04.03
版本。
vagrant up
出现以下错误后。
vm:
* The following settings shouldn't exist: box_check_update
* The box 'ubuntu/vivid64' could not be found.
我已查看我的Vagrantfile
,并看到config.vm.box_check_update = false
。
Ubuntu/vivid64
就在这里:https://atlas.hashicorp.com/ubuntu/boxes/vivid64
答案 0 :(得分:0)
config.vm.box_check_update
和config.vm.box = "ubuntu/vivid64"
是vagrant 1.5的功能(请参阅博客公告https://www.vagrantup.com/blog/vagrant-1-5-and-vagrant-cloud.html和https://www.vagrantup.com/blog/feature-preview-vagrant-1-5-boxes-2-0.html)
升级到 Vagrant 1.5 (或更好的最新版本),它会正常运行。