Today I was trying to install the ruby application dependencies manager Bundler http://gembundler.com/index.html in my Ubuntu like this:
gem install bundler
As you have noticed is a ruby gem. The installation guide was pretty accurated, the problem came with the actual mysql lib dependency that I had in my Fikket source code.
The Bundler command “bundle install” could not get it working.
Solution: installing the libmysqlclient15-dev
And everything was ready to go. So if you have this problem when doing: gem install mysql –> install first the mysql dev library!
Regards!
Daniel
PS: In dev env I was only using sqlite, that’s why before using Bundler I didn’t have to fight against the mysql lib installation.
1 comment so far ↓
[...] This post was mentioned on Twitter by Ruby on Rails UK, RubyonRails Ireland. RubyonRails Ireland said: Ruby on Rails Bundle Problem daniel gálvez valenzuela http://bit.ly/bknCRB [...]
Leave a Comment