Ingi Kim
Ingi Kim

Reputation: 21

Why can't I install mysql2 on Ruby On Rails?

I don't know how to install mysql2.

I'm using:


Installing mysql2 (0.3.13) 

An error occurred while installing mysql2 (0.3.13), and Bundler cannot continue.
Make sure that `gem install mysql2 -v '0.3.13'` succeeds before bundling.

Gem::Installer::ExtensionBuildError: ERROR: Failed to build gem native extension.

    /System/Library/Frameworks/Ruby.framework/Versions/2.0/usr/bin/ruby extconf.rb 

*** extconf.rb failed ***
Could not create Makefile due to some reason, probably lack of necessary
libraries and/or headers.  Check the mkmf.log file for more details.  You may
need configuration options.


Gem files will remain installed in /Users/kimingi/.bundler/tmp/1983/gems/mysql2-0.3.13 for inspection.
Results logged to /Users/kimingi/.bundler/tmp/1983/gems/mysql2-0.3.13/ext/mysql2/gem_make.out

An error occurred while installing mysql2 (0.3.13), and Bundler cannot continue.
Make sure that `gem install mysql2 -v '0.3.13'` succeeds before bundling.

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

Upvotes: 2

Views: 3298

Answers (2)

Lesly Revenge
Lesly Revenge

Reputation: 922

I ran to the same problem. To fix this problem, open a command prompt. go to your application folder. And type: gem install mysql2 -v 0.3.11 this version is working great.

Upvotes: 0

roninblade
roninblade

Reputation: 1892

You need to install mysql locally. Since you're on OS X you can use Homebrew.

# to Install homebrew
ruby -e "$(curl -fsSL https://raw.github.com/mxcl/homebrew/go)"

# to install mysql through homebrew
brew install mysql

Upvotes: 5

Related Questions