Когда я пытался установить Laravel Усадьба, я столкнулся с проблемами
Я использую Git Terminal, когда я пытаюсь это
$ vagrant box add laravel/homestead https://atlas.hashicorp.com/laravel/boxes/homestead
Я получаю эту ошибку
==> box: Box file was not detected as metadata. Adding it directly...
==> box: Adding box 'laravel/homestead' (v0) for provider:
box: Downloading: https://atlas.hashicorp.com/laravel/boxes/homestead
box:
An error occurred while downloading the remote file. The error
message, if any, is reproduced below. Please fix this error and try
again.
Could not resolve host: (nil); Host not found
Скорее всего, вы должны просто обновить Vagrant. Ваша проблема должна быть исправлена с помощью этого коммита: https://github.com/mitchellh/vagrant/commit/5f12126d32dfa30f5f48d12724eeb29222942cb0
Если вы не хотите обновлять Vagrant, тогда вам нужно раскомментировать этот параметр в Vagrantfile:
config.vm.box_check_update = false
Других решений пока нет …