ERROR: Failed to build gem native extension - Error installing mysql2

前端 未结 5 576
北恋
北恋 2021-02-02 06:22

error while running bundle install

Installing mysql2 (0.3.11) with native extensions 
Gem::Installer::ExtensionBuildError: ERROR: Failed to build gem native exte         


        
5条回答
  •  时光取名叫无心
    2021-02-02 07:04

    If the stack trace includes this error:

    mkmf.rb can't find header files for ruby at /usr/lib/ruby/include/ruby.h
    

    Look at what version of ruby you're using with:

    ruby -v
    

    Then install the correct version of ruby dev that goes with your version of ruby:

    sudo apt-get install ruby2.0-dev
    sudo apt-get install ruby2.2-dev
    sudo apt-get install ruby2.3-dev
    

    Then:

    gem install mysql2
    

提交回复
热议问题