問題描述
$ vagrant up
Bringing machine 'homestead-7' up with 'virtualbox' provider...
==> homestead-7: Box 'laravel/homestead' could not be found. Attempting to find and install...
homestead-7: Box Provider: virtualbox
homestead-7: Box Version: >= 7.0.0
==> homestead-7: Loading metadata for box 'laravel/homestead'
homestead-7: URL: https://vagrantcloud.com/laravel/homestead
The box 'laravel/homestead' could not be found or
could not be accessed in the remote catalog. If this is a private
box on HashiCorp's Vagrant Cloud, please verify you're logged in viavagrant login
. Also, please double-check the name. The expanded
URL and error message are shown below:URL: https://vagrantcloud.com/laravel/homestead
Error: OpenSSL SSL_read: SSL_ERROR_SYSCALL, errno 10054
執行後一直提示not found;
解決方案:
將homestead.rb中 config.vm.box_version = settings['version'] ||= '>= 7.0.0' 改為 config.vm.box_version = settings["version"] ||= ">= 0"
本作品採用《CC 協議》,轉載必須註明作者和本文連結