Error installing mysql2: Failed to build gem native extension

后端 未结 27 3151
清酒与你
清酒与你 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:07

    On Ubuntu(18.04)

    i was able to solve this issue by running the following:

    sudo apt-get install build-essential libmysqlclient-dev
    gem install mysql2
    

    reference

提交回复
热议问题