Vagrantのコマンドを叩くとエラーになる。
VirtualBoxをアップデートしていたら、いつの間にかVagrantに対応していないバージョンに上がった模様。
1 2 3 4 5 6 7 8 9 10 |
$ vagrant status The provider 'virtualbox' that was requested to back the machine 'default' is reporting that it isn't usable on this system. The reason is shown below: Vagrant has detected that you have a version of VirtualBox installed that is not supported. Please install one of the supported versions listed below to use Vagrant: 4.0, 4.1, 4.2, 4.3 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
$ vagrant version Installed Version: 1.7.2 Latest Version: 1.8.1 To upgrade to the latest version, visit the downloads page and download and install the latest version of Vagrant from the URL below: http://www.vagrantup.com/downloads.html If you're curious what changed in the latest release, view the CHANGELOG below: https://github.com/mitchellh/vagrant/blob/v1.8.1/CHANGELOG.md |
調べると、Vagrantのバージョンをあげれば、対応可能になりそうとの事で、
上記のvagrantのダウンロードサイト
にアクセスし、最新版の1.8.1をダウンロード・インストールする。
再度vagrantコマンドを叩いてみる。
1 2 3 4 5 6 |
$ vagrant status Current machine states: default poweroff (virtualbox) The VM is powered off. To restart the VM, simply run `vagrant up` |
今度はコマンドを認識し、解決した。
Tweet
