LoginSignup
8
8

More than 5 years have passed since last update.

'Incorrect MySQL client library version! This gem was compiled for x1.x2.x3 but the client library is y1.y2.y3'と怒られる件への対処

Last updated at Posted at 2014-05-28

いろいろなケースがあるようだけど、以下のコマンドで解決する場合あり。

gem uninstall mysql2
gem uninstall mysql2-cs-bind

find / -name mysql_config    # ---> <mysql_config_path>

gem install mysql2 -- --with-mysql-config= *mysql_config_path*
gem install mysql2-cs-bind -- --with-mysql-config=<mysql_config_path>
8
8
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
8
8