Laravel Homestead is an official, pre-packaged Vagrant box that provides you a wonderful development environment without requiring you to install PHP, HHVM, a web server, and any other server software on your local machine. Read more...
Download homestead box:
https://app.vagrantup.com/laravel/boxes/homestead/versions/9.5.1/providers/virtualbox.box
You can change the version of homestead box. Current version:
9.5.1
.
After downloading the box, rename it to virtualbox.box
or whatever name you like.
Don't forget to include the
.box
extension.
Add the downloaded homestead box to vagrant:
vagrant box add laravel/homestead file:///c:/users/idecardo/downloads/virtualbox.box
Change the path to where you stored your downloaded homestead box.
Navigate to vagrant directory:
c:/users/idecardo/.vagrant.d/boxes/laravel-VAGRANTSLASH-homestead
Create a metadata_url
file and add this link:
https://app.vagrantup.com/laravel/boxes/homestead
Do not add a newline.
Rename folder 0
to 9.5.1
9.5.1
is your homestead box version.
Using gitbash, within c:/users/idecardo/.vagrant.d/boxes/laravel-VAGRANTSLASH-homestead
directory:
touch metadata_url
echo -n 'https://app.vagrantup.com/laravel/boxes/homestead' > metadata_url
mv 0 9.5.1
Thanks mate for this.
And how difficult was this for the Laravel/Homestead team to explain?
Why they keep everything so complicated, It was meant to make development easy, instead it made it worse, Not everyone have high speed internet and Installing on many PC would be really stupid the way they do.