MySQL Install: ERROR: Failed to build gem native extension

前端 未结 14 1681
天涯浪人
天涯浪人 2020-11-28 19:23

I\'m trying to get MySQL installed to the latest version due to some installation going wrong somewhere along the line. I run the command gem install mysql and

相关标签:
14条回答
  • 2020-11-28 20:25

    On Debian (or Ubuntu) systems, just install libmysqlclient-dev package using:

    sudo apt-get install libmysqlclient-dev
    

    and then:

    gem install mysql
    

    It will be installed without any error.

    0 讨论(0)
  • 2020-11-28 20:25

    Your Ubuntu OS need to install library for mysql client sudo apt-get install libmysqlclient-dev

    After That just install bundle or bundle install

    0 讨论(0)
提交回复
热议问题