LoginSignup
0
1

More than 3 years have passed since last update.

MacOSでgcloudコマンドがlibssl.1.0.0.dylibがロードできなくて失敗する問題の対応方法

Posted at

MacOS上のgcloudコマンドが、あるときから以下のエラーを出して動かなくなってしまった。

エラー


ERROR: gcloud failed to load: dlopen(/Users/xxx/.pyenv/versions/3.7.2/lib/python3.7/lib-dynload/_ssl.cpython-37m-darwin.so, 2): Library not loaded: /usr/local/opt/openssl/lib/libssl.1.0.0.dylib

どうやらOpenSSLのバージョンが1.0から1.1にあがり、ライブラリの名前が変わってしまったようだ。

以下のコマンドでOpenSSLのバージョンを下げて対応した。

brew switch openssl 1.0.2s
0
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
1