2

At the moment I am getting this error and don't really know how to fix it. I only get it while working on a Packrat R project.

install.packages("dplyr")

curl: (35) LibreSSL SSL_connect: SSL_ERROR_SYSCALL in connection to cran.rstudio.com:443 Error in download.file(url, destfile, method, mode = "wb", ...) : 'curl' call had nonzero exit status

I recently updated my MacOS version, as well as my R version.

I tried installing libressl/openssl via brew.

Steffen Moritz
  • 7,277
  • 11
  • 36
  • 55

1 Answers1

2

Here is the solution I found for this problem

  1. Install or upgrade libressl, openssl, curl

  2. Restart your computer (this is important)


On Mac terminal:

 brew install libressl
 brew install openssl
 brew install curl
Steffen Moritz
  • 7,277
  • 11
  • 36
  • 55