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


当前回答

在我的情况下,我没有安装基本的编译器,所以

sudo apt-get install build-essential

解决了我的问题,但对大多数人来说,我认为https://stackoverflow.com/a/3649005/417267是解决方案。

其他回答

我同意Danya Vershinin和EnotionZ的观点。

如果不能使用apt-get:

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

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

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

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

您已经破坏了RVM版本。Ubuntu对RVM做了一些事情,产生了很多错误,目前唯一安全的修复方法是:sudo apt-get——purge remove ruby-rvm sudo rm -rf /usr/share/ruby…如果没有帮助,那么重新启动你的计算机。install RVM: \curl -L https://get.rvm.io | bash -s stable——ruby——autolibs=enable——auto-dotfiles如果你发现你需要一些手把手的帮助,可以看看在Ubuntu 12.04上安装ruby,其中给出了更多的说明

不是——without-sqlite3-include=/usr/include,而是——with-sqlite3-include=/usr/include。

上面提到的解决方案都不适合我,即使在安装了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