Vagrant on Windows 7 error: Box 'hashicorp/precise32' could not be found

Vagrant on Windows 7 error: Box 'hashicorp/precise32' could not be found

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

Vagrant 1.5 the Vagrant Cloud后可用。于是,vagrant find box in vagrant cloud。

这个 Vagrantfile 应该足够了:

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

不过,你可以试试:

$ vagrant box add hashicorp/precise32
$ vagrant up

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

我找到了原因和解决方案:问题出在 AVG Anti-virus 上。我临时禁用了 AVG "vagrant up" 并且它起作用了。

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

感谢 acfreitas 的帮助和建议!