Error installing mysql2: Failed to build gem native extension

后端 未结 27 2721
清酒与你
清酒与你 2020-11-22 08:06

I am having some problems when trying to install mysql2 gem for Rails. When I try to install it by running bundle install or gem install mysq

27条回答
  •  北恋
    北恋 (楼主)
    2020-11-22 09:01

    Another way for MacOS users

    If you used "brew" to install mysql:

    gem install mysql2 -v 'x.x.x' -- --with-mysql-config=/usr/local/Cellar/mysql/y.y.y/bin/mysql_config
    

    x.x.x = version of the mysql2 gem you want to install
    y.y.y = the version of mysql you have installed ls /usr/local/Cellar/mysql to find it.

提交回复
热议问题