我在Windows 7上安装了Vagrant 1-7-2,但我无法运行它。我按照www.vagrantup.com上的入门说明进行操作,这看起来很简单,但对我来说不起作用。我收到这个错误:
答案 0 :(得分:0)
Vagrant 1.5后Vagrant 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给出了这个错误:
答案 2 :(得分:0)
我找到了原因和解决方案:问题是AVG Anti-virus。我禁用AVG临时做了“流浪汉”并且它有效。
感谢acfreitas寻求帮助和建议!