Windows 7上的Vagrant错误:无法找到Box'hashicorp / precise32'

时间:2015-03-10 08:27:06

标签: vagrant vagrant-windows

我在Windows 7上安装了Vagrant 1-7-2,但我无法运行它。我按照www.vagrantup.com上的入门说明进行操作,这看起来很简单,但对我来说不起作用。我收到这个错误:

enter image description here

3 个答案:

答案 0 :(得分:0)

Vagrant 1.5Vagrant Cloud可用。所以,流浪汉在流浪云中寻找盒子。

这个Vagrantfile应该足够了:

Vagrant.configure(2) do |config|
    config.vm.box = "hashicorp/precise32"
end

但是,您可以尝试:

$ vagrant box add hashicorp/precise32
$ vagrant up

答案 1 :(得分:0)

vagrant box add hashicorp / precise32给出了这个错误:

enter image description here

答案 2 :(得分:0)

我找到了原因和解决方案:问题是AVG Anti-virus。我禁用AVG临时做了“流浪汉”并且它有效。

在这篇文章中找到了这个:http://www.tagwith.com/question_95494_solved-how-to-vagrant-up-with-puphpet-on-windows-7-x64-with-vagrant-1-7-2

感谢acfreitas寻求帮助和建议!