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

前端 未结 5 574
北恋
北恋 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 06:50

    Try to install these packages:

    sudo apt-get install libmysqlclient-dev
    
    sudo apt-get install bundler 
    

    After installing the bundler, run:

    gem install mysql2
    

提交回复
热议问题