Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

curl: (56) LibreSSL SSL_read: SSL_ERROR_SYSCALL, errno 54

Tags:

flutter

dart

When I upgrade flutter, I came across with below error message.

curl: (56) LibreSSL SSL_read: SSL_ERROR_SYSCALL, errno 54

Failed to retrieve the Dart SDK from: https://storage.googleapis.com/flutter_infra/flutter/4737fc5cd89b8f0136e927b00f2e159444b95a73/dart-sdk-darwin-x64.zip
If you're located in China, please see this page:
  https://flutter.io/community/china


Flutter 1.3.8 • channel beta • https://github.com/flutter/flutter.git
Framework • revision e5b1ed7a7f (6 weeks ago) • 2019-04-11 14:01:46 -0700
Engine • revision 4737fc5cd8
Tools • Dart 2.2.1 (build 2.2.1-dev.0.0 571ea80e11)

Running flutter doctor...
Downloading Dart SDK from Flutter engine 4737fc5cd89b8f0136e927b00f2e159444b95a73...
  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                 Dload  Upload   Total   Spent    Left  Speed

What is this? what is the the problems?

like image 976
Govaadiyo Avatar asked Apr 17 '19 17:04

Govaadiyo


2 Answers

its a network issue. If your internet is very slow and there are hiccups with network, you will face this error. Try to run again

like image 143
R Pidugu Avatar answered Oct 03 '22 07:10

R Pidugu


Run these commands, it should solve the problem.

echo '--no-alpn' > ~/.curlrc
export HOMEBREW_CURLRC=1
like image 22
NarendraSoni Avatar answered Oct 03 '22 09:10

NarendraSoni