show/hide this revision's text 3 getting specific

The issue is that the MySQL gem builds native extensions and needs system-specific information about where to find certain libraries. You have to provide this on the command line.

Check out these instructionsthis page - the important bit (that worked for me, anyway) was:

sudo gem install mysql -- --with-mysql-config=/usr/local/mysql/bin/mysql_config

Of course, be sure to substitute the correct path for your own system.

Also, stick with running your gem install commands via sudo.

The bigger issue is that the gem software provides NO feedback regarding the fact that you can't just do gem install mysql like you do with every other gem (and indeed, used to be able to do with the MySQL gem).

show/hide this revision's text 2 clarification of sudo mention

The issue is that the MySQL gem builds native extensions and needs system-specific information about where to find certain libraries. You have to provide this on the command line.

Check out these instructions.

Also, you may need to run stick with running your gem install commands via sudo.

The bigger issue is that the gem software provides NO feedback regarding the fact that you can't just do gem install mysql like you do with every other gem (and indeed, used to be able to do with the MySQL gem).

show/hide this revision's text 1

The issue is that the MySQL gem builds native extensions and needs system-specific information about where to find certain libraries. You have to provide this on the command line.

Check out these instructions.

Also, you may need to run gem install commands via sudo.

The bigger issue is that the gem software provides NO feedback regarding the fact that you can't just do gem install mysql like you do with every other gem (and indeed, used to be able to do with the MySQL gem).