in my console,
pt@pt:~$ sudo gem install mysql
[sudo] password for pt:
Building native extensions. This could take a while...
ERROR: Error installing mysql:
ERROR: Failed to build gem native extension.
/usr/bin/ruby1.8 extconf.rb
extconf.rb:10:in `require': no such file to load -- mkmf (LoadError)
from extconf.rb:10
Gem files will remain installed in /var/lib/gems/1.8/gems/mysql-2.8.1
for inspection.
Results logged to
/var/lib/gems/1.8/gems/mysql-2.8.1/ext/mysql_api/gem_make.out
pt@pt:~$ gem -v
1.3.7
pt@pt:~$
what's wrong?
You are missing the headerfiles for MySQL. If you re on a binary
distribution, "apt-get install mysql-dev" or "yum install mysql-dev"
should make the gem install work (adjust the installation command to
your distribution of *NIX of choice, of course).
···
On Tue, Dec 7, 2010 at 8:15 AM, Pen Ttt <myocean135@yahoo.cn> wrote:
in my console,
pt@pt:~$ sudo gem install mysql
[sudo] password for pt:
Building native extensions. This could take a while...
ERROR: Error installing mysql:
ERROR: Failed to build gem native extension.
/usr/bin/ruby1.8 extconf.rb
extconf.rb:10:in `require': no such file to load -- mkmf (LoadError)
from extconf.rb:10
Gem files will remain installed in /var/lib/gems/1.8/gems/mysql-2.8.1
for inspection.
Results logged to
/var/lib/gems/1.8/gems/mysql-2.8.1/ext/mysql_api/gem_make.out
pt@pt:~$ gem -v
1.3.7
pt@pt:~$
what's wrong?
--
Phillip Gawlowski
Though the folk I have met,
(Ah, how soon!) they forget
When I've moved on to some other place,
There may be one or two,
When I've played and passed through,
Who'll remember my song or my face.
pt@pt:~$ apt-get install mysql-dev
E: Could not open lock file /var/lib/dpkg/lock - open (13: Permission
denied)
E: Unable to lock the administration directory (/var/lib/dpkg/), are you
root?
pt@pt:~$ sudo apt-get install mysql-dev
[sudo] password for pt:
Reading package lists... Done
Building dependency tree
Reading state information... Done
E: Unable to locate package mysql-dev
pt@pt:~$
Also, mysql gem requires mysql headers, try "sudo apt-get install
mysql-dev", but dunno if that works as I'm not familiarized with
Debian/Ubuntu packaging conventions
···
On Dec 7, 4:15 am, Pen Ttt <myocean...@yahoo.cn> wrote:
in my console,
pt@pt:~$ sudo gem install mysql
[sudo] password for pt:
Building native extensions. This could take a while...
ERROR: Error installing mysql:
ERROR: Failed to build gem native extension.
/usr/bin/ruby1.8 extconf.rb
extconf.rb:10:in `require': no such file to load -- mkmf (LoadError)
from extconf.rb:10
Gem files will remain installed in /var/lib/gems/1.8/gems/mysql-2.8.1
for inspection.
Results logged to
/var/lib/gems/1.8/gems/mysql-2.8.1/ext/mysql_api/gem_make.out
pt@pt:~$ gem -v
1.3.7
pt@pt:~$
what's wrong?
sudo gem install mysql -- --with-mysql-config=/usr/local/mysql/bin/
mysql_config
···
On Dec 7, 7:06 pm, Pen Ttt <myocean...@yahoo.cn> wrote:
pt@pt:~$ apt-get install mysql-dev
E: Could not open lock file /var/lib/dpkg/lock - open (13: Permission
denied)
E: Unable to lock the administration directory (/var/lib/dpkg/), are you
root?
pt@pt:~$ sudo apt-get install mysql-dev
[sudo] password for pt:
Reading package lists... Done
Building dependency tree
Reading state information... Done
E: Unable to locate package mysql-dev
pt@pt:~$