Как установить гем sqlite3 на EC2? - PullRequest
6 голосов
/ 26 апреля 2011

Когда я пытался:

 sudo yum install ruby-devel sqlite3-devel

Amazon EC2 возвращает:

 Loaded plugins: fastestmirror, priorities, security
 Loading mirror speeds from cached hostfile
 Setting up Install Process
 Package ruby-devel-1.8.7.330-1.5.amzn1.i686 already installed and latest version
 No package sqlite3-devel available.
 Nothing to do

Любая помощь будет оценена.

ОБНОВЛЕНИЕ:

sudo gem install sqlite3-ruby

1012 * возвращается *

Building native extensions.  This could take a while...
ERROR:  Error installing sqlite3-ruby:
    ERROR: Failed to build gem native extension.

        /usr/bin/ruby extconf.rb
checking for sqlite3.h... no
sqlite3.h is missing. Try 'port install sqlite3 +universal'
or 'yum install sqlite3-devel' and check your shared library search path (the
location where your sqlite3 shared library is located).
*** 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.

Ответы [ 2 ]

14 голосов
/ 26 апреля 2011

sudo yum install sqlite3-devel должно быть:

sudo yum install sqlite-devel
5 голосов
/ 26 апреля 2011

На моем Ubuntu я установил следующие две библиотеки и гем в следующем порядке:

sudo apt-get install libsqlite3-dev
sudo apt-get install sqlite3  # this installs several tools, including the command-line utility
sudo gem install sqlite3-ruby # this is going to spit out a bunch of errors, but you may be able to ignore them
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...