Reputation: 5078
I am trying to bundle install
the Rails project I pulled from GitHub. However, I run in this issue. Here is my Gemfile.
I can't get this to work. Any opinions what might go wrong here?
THANKS!
Upvotes: 0
Views: 547
Reputation: 4980
On ubuntu you need to install libmysqlclient-dev package using the command
sudo apt-get install libmysqlclient-dev
Upvotes: 2
Reputation: 61497
You need to install the mysql dev packages to compile the native extension.
Upvotes: 1