Homestead
https://github.com/laravel/homestead/releases
先切换到master分支然后pull
之后切换到最新的发行版
Vagrant
https://www.vagrantup.com/downloads.html
官网下载重新装
VirtualBox
官网下载重新装
Box
vagrant box update
运行上面命令,拿到下载链接用迅雷下载
vagrant destroy
这个命令,先删掉环境
vagrant box remove laravel/homestead
再删掉盒子
vagrant box add laravel/homestead ~/Downloads/virtualbox.box
上面命令,安装新版盒子
之后去这个位置:~/.vagrant.d/boxes/laravel-VAGRANTSLASH-homestead
把文件夹名字改成盒子版本号,创建一个metadata_url文件,内容是:
https://app.vagrantup.com/laravel/boxes/homestead
注意这里文件中除了URL之外不能包含任何其他字符,否则会报错(部分编辑器创建的文件会包含一些隐藏的字符)
最后
vagrant up