我在 Windows 7 上安装了 Vagrant 1-7-2,但无法运行。我按照 www.vagrantup.com 上的入门说明进行操作,这看起来很简单,但对我不起作用。我收到此错误:
问问题
429 次
3 回答
0
在Vagrant 1.5之后,Vagrant Cloud可用。所以,vagrant 在 vagrant cloud 中查找框。
这个 Vagrantfile 应该足够了:
Vagrant.configure(2) do |config|
config.vm.box = "hashicorp/precise32"
end
但是,您可以尝试:
$ vagrant box add hashicorp/precise32
$ vagrant up
于 2015-03-11T20:43:01.583 回答
0
vagrant box add hashcorp/precise32 给出了这个错误:
于 2015-03-11T21:11:31.963 回答
0
我找到了原因和解决方案:问题是 AVG Anti-virus。我禁用了 AVG 临时做了“流浪汉”,它起作用了。
感谢 acfreitas 的帮助和建议!
于 2015-03-12T13:21:21.570 回答