ruby on rails - "Incorrect MySQL client library version" -
i'm getting following error when running rake assets:precompile
incorrect mysql client library version! gem compiled 5.6.10 client library 5.5.12.
mysql installed using homebrew , version 5.6.10. can connect database on 127.0.0.1 locally.
i've tried following no luck:
archflags="-arch x86_64" gem install mysql2 -- –with-mysql-config=/usr/local/bin/mysql_config
it seems advice folks "client library" newer 1 gem compiled for. issue opposite. can't figure out 5.5.12 coming from. ideas?
try:
gem uninstall mysql gem uninstall mysql2
then
bundle install
Comments
Post a Comment