sqlite3-ruby安装过程中出现以下错误:

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

/usr/bin/ruby1.8 extconf.rb
checking for sqlite3.h... no
sqlite3.h is missing. Try 'port install sqlite3 +universal' or 'yum install sqlite3-devel'
*** 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.

Provided configuration options:
    --with-opt-dir
    --without-opt-dir
    --with-opt-include
    --without-opt-include=${opt-dir}/include
    --with-opt-lib
    --without-opt-lib=${opt-dir}/lib
    --with-make-prog
    --without-make-prog
    --srcdir=.
    --curdir
    --ruby=/usr/bin/ruby1.8
    --with-sqlite3-dir
    --without-sqlite3-dir
    --with-sqlite3-include
    --without-sqlite3-include=${sqlite3-dir}/include
    --with-sqlite3-lib
    --without-sqlite3-lib=${sqlite3-dir}/lib


Gem files will remain installed in /usr/lib/ruby/gems/1.8/gems/sqlite3-ruby-1.3.1 for inspection.
Results logged to /usr/lib/ruby/gems/1.8/gems/sqlite3-ruby-1.3.1/ext/sqlite3/gem_make.out

Sqlite3.h位于/usr/include/中

sudo gem install sqlite3-ruby --without-sqlite3-include=/usr/include

不工作


ERROR:  While executing gem ... (OptionParser::InvalidOption)
    invalid option: --without-sqlite3-include=/usr/include

Ubuntu 10.04


当前回答

这里有一个来自HEROKU的更好的答案-不能运行git推HEROKU master

因为你不能在heroku上使用sqlite3,所以把这个添加到你的Gemfile中:

group :production do
  gem 'pg'
end
group :development, :test do
  gem 'sqlite3'
end

其他回答

我同意Danya Vershinin和EnotionZ的观点。

如果不能使用apt-get:

通过指定自己的“前缀”路径从源代码编译和安装sqlite3。 更多信息可以在README中找到。 然后将此路径传递给sqlite3-ruby安装程序(不要忘记“——”)。

在ubuntu上找不到sqlite3.h:

你还需要安装gcc本身,所以总的来说它将是:

sudo apt-get install gcc libsqlite3-dev ruby1.8-dev
sudo gem install sqlite3

显然,当实际问题是缺少gcc本身时,您会得到一个指向缺少sqlite3.h的错误错误。

我刚刚降级为sqlite3-ruby '1.2.2'

这和我几周前遇到的问题一模一样。我发现我需要从SQLite下载页面下载最新的头文件/库。试试吧,希望这对你有帮助!

上面提到的解决方案都不适合我,即使在安装了ruby2.5-dev和libsqlite3-dev之后。然后尝试使用PostgreSql代替sqlite。效果很好。在创建rails项目时使用PostgreSql而不是sqlite使用此命令。

rails [_VERSION_] new project_name -d postgresql

如果你想使用MySql,请使用MySql而不是postgresql。

rails [_VERSION_] new project_name -d mysql

否则,您可以尝试不使用sqlite。

bundle install --without sqlite