我的计算机(MacBookPro)上运行的VirtualBox上有一个Vagrantfile,运行得很好。然后我安装了另一个Vagrantfile。
即使我摧毁了它们两个,我仍然无法用vagrant up
加载它
我手动关闭了所有虚拟机,但仍然收到此错误...
$ vagrant up
There was an error loading a Vagrantfile. The file being loaded and the error message are shown below. This is usually caused by a syntax error.
Path: /Users/actual_username/.vagrant.d/boxes/actual_vagrantfile_name/0.3-centos-actualSNAPSHOT_number/virtualbox/Vagrantfile
Line number: 0
Message: NameError: undefined local variable or method `config' for main:Object
答案 0 :(得分:0)
您可能需要添加
Vagrant.configure("2") do |config|
在您的vagrantfile中使用config变量的任何地方。