安装 laravel homestead 错误
install laravel homestead error
我正在尝试安装 laravel homestead。我按照网站上的步骤操作,但是当我到达必须执行的步骤时:
vagrant box add laravel/homestead
我有 windows 并且我使用 git bash。他下载了一会儿然后我收到这个错误消息(这是我下载时的所有文本(也许对你有帮助)。错误在底部):
$ vagrant box add --insecure laravel/homestead
==> box: Loading metadata for box 'laravel/homestead'
box: URL: https://atlas.hashicorp.com/laravel/homestead
This box can work with multiple providers! The providers that it
can work with are listed below. Please review the list and choose
the provider you will be working with.
1) parallels
2) virtualbox
3) vmware_desktop
Enter your choice: 2
==> box: Adding box 'laravel/homestead' (v2.1.0) for provider: virtualbox
box: Downloading: https://atlas.hashicorp.com/laravel/boxes/homestead/versions/2.1.0/providers/virtualbox.box
==> box: Box download is resuming from prior download progress
box:
An error occurred while downloading the remote file. The error
message, if any, is reproduced below. Please fix this error and try
again.
SSL read: error:00000000:lib(0):func(0):reason(0), errno 10054
我读过也许它在我做的时候有用:vagrant box add laravel/homestead -c,但对我不起作用。我试过这个:http://slick.pl/kb/software/vagrant-fix-for-error-60-ssl-read/。这也不行。
有人可以帮我吗?
谢谢
以下是评论中讨论的解决此问题的内容。问题在这里
Github Isuue
不过这是普遍共识,将 https 替换为 http,如下所示
vagrant box add laravel/homestead http://atlas.hashicorp.com/laravel/boxes/homestead
或
vagrant box add --insecure -c laravel/homestead http://atlas.hashicorp.com/laravel/boxes/homestead
我正在尝试安装 laravel homestead。我按照网站上的步骤操作,但是当我到达必须执行的步骤时:
vagrant box add laravel/homestead
我有 windows 并且我使用 git bash。他下载了一会儿然后我收到这个错误消息(这是我下载时的所有文本(也许对你有帮助)。错误在底部):
$ vagrant box add --insecure laravel/homestead
==> box: Loading metadata for box 'laravel/homestead'
box: URL: https://atlas.hashicorp.com/laravel/homestead
This box can work with multiple providers! The providers that it
can work with are listed below. Please review the list and choose
the provider you will be working with.
1) parallels
2) virtualbox
3) vmware_desktop
Enter your choice: 2
==> box: Adding box 'laravel/homestead' (v2.1.0) for provider: virtualbox
box: Downloading: https://atlas.hashicorp.com/laravel/boxes/homestead/versions/2.1.0/providers/virtualbox.box
==> box: Box download is resuming from prior download progress
box:
An error occurred while downloading the remote file. The error
message, if any, is reproduced below. Please fix this error and try
again.
SSL read: error:00000000:lib(0):func(0):reason(0), errno 10054
我读过也许它在我做的时候有用:vagrant box add laravel/homestead -c,但对我不起作用。我试过这个:http://slick.pl/kb/software/vagrant-fix-for-error-60-ssl-read/。这也不行。
有人可以帮我吗?
谢谢
以下是评论中讨论的解决此问题的内容。问题在这里 Github Isuue
不过这是普遍共识,将 https 替换为 http,如下所示
vagrant box add laravel/homestead http://atlas.hashicorp.com/laravel/boxes/homestead
或
vagrant box add --insecure -c laravel/homestead http://atlas.hashicorp.com/laravel/boxes/homestead