web-dev-qa-db-ja.com

mysql2 gemでrake db:migrateエラー-ライブラリがロードされていません:libssl.1.0.0.dylib

Rake db:migrateの実行後に次のエラーが発生する

rake aborted!
LoadError: dlopen(/Users/scott/.rbenv/versions/2.4.1/lib/Ruby/gems/2.4.0/gems/mysql2-0.4.10/lib/mysql2/mysql2.bundle, 9): Library not loaded: libssl.1.0.0.dylib
  Referenced from: /Users/scott/.rbenv/versions/2.4.1/lib/Ruby/gems/2.4.0/gems/mysql2-0.4.10/lib/mysql2/mysql2.bundle
  Reason: image not found - /Users/scott/.rbenv/versions/2.4.1/lib/Ruby/gems/2.4.0/gems/mysql2-0.4.10/lib/mysql2/mysql2.bundle
/Users/scott/Google Drive/playground/myApp/myApp/config/application.rb:21:in `<top (required)>'
/Users/scott/Google Drive/playground/myApp/myApp/Rakefile:4:in `<top (required)>'

Libsslは何を指しますか?

11
s89_

たった1つのコマンド:

gem pristine mysql2

それから私はこの問題を修正します

0
Cool.wen