1

On the Mac, brew install something (chromedriver in this case), yields:

curl: (51) SSL: certificate verification failed (result: 5)
Error: Failed to download resource "chromedriver"
Download failed: https://chromedriver.storage.googleapis.com/2.22/chromedriver_mac32.zip

Que pasa?

paul_h
  • 1,859
  • 3
  • 19
  • 27

1 Answers1

6

Env var SSL_CERT_FILE was set to something by some other tool previously. This ...

export SSL_CERT_FILE=""
brew install something

... fixes the problem

paul_h
  • 1,859
  • 3
  • 19
  • 27