when looking for vagrant up
this is what you get: Error when trying vagrant up
. I didn't find this particularly helpful so what the correct answer is you need to go to, https://app.vagrantup.com/boxes/search and find a recent box. The box written about in the previous answer doesn't exist.
Asked
Active
Viewed 38 times
0

Whitequill Riclo
- 788
- 2
- 8
- 19
1 Answers
1
So the answer should be:
- Run
vagrant init
in the directory you want to use; this will create a file called Vagrantfile. - After which go to the url above and find a box you want.
- Open Vagrantfile and under
config.vm.box = prefered/box
edit the box to your preferred box that you found in search. - After you have modified your Vagrantfile file run the command
vagrant up
. This will download the box. - Success!

Whitequill Riclo
- 788
- 2
- 8
- 19